1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/manual/docs/Working with objects - Component overview - Query - HAVING conditions.php

18 lines
497 B
PHP
Raw Normal View History

2007-04-14 01:49:11 +04:00
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>