Grupowanie klauzul WHERE za pomocą Zend_Db_Table_Abstract

Czy ktoś zna sposób grupowania klauzul z Zend_Db? Zasadniczo mam to zapytanie

$sql = $table->select()
             ->where('company_id = ?', $company_id)
             ->where('client_email = ?', $client_email)
             ->orWhere('client_email_alt = ?', $client_email);

Co mi to daje:

SELECT `clients`.* FROM `clients` WHERE (company_id = '1') AND (client_email = '[email protected]') OR (client_email_alt = '[email protected]')

Ale potrzebuję tego, aby dać mi to, gdzie zgrupowane jest wyrażenie OR:

SELECT `clients`.* FROM `clients` WHERE (company_id = '1') AND ((client_email = '[email protected]') OR (client_email_alt = '[email protected]'))

questionAnswers(5)

yourAnswerToTheQuestion