18 lines
505 B
PHP
18 lines
505 B
PHP
<?php ?>
|
|
Doctrine_Query provides having() method for adding HAVING conditions to the DQL query. This method is identical in function to the Doctrine_Query::where() method.
|
|
|
|
|
|
|
|
If you call having() multiple times, the conditions are ANDed together; if you want to OR a condition, use orHaving().
|
|
|
|
|
|
<code type="php">
|
|
\$q = new Doctrine_Query();
|
|
|
|
\$users = \$q->select('u.name')
|
|
->from('User u')
|
|
->leftJoin('u.Phonenumber p');
|
|
->having('COUNT(p.id) > 3');
|
|
?></code>
|
|
|