1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/docs/Working with objects - Component overview - Query - HAVING conditions.php
2007-04-13 21:49:11 +00:00

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>