1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/manual/docs/DQL (Doctrine Query Language) - GROUP BY, HAVING clauses.php

48 lines
1.2 KiB
PHP
Raw Normal View History

2007-04-14 01:49:11 +04:00
* GROUP BY and HAVING clauses can be used for dealing with aggregate functions
2007-04-14 01:49:11 +04:00
* Following aggregate functions are availible on DQL: COUNT, MAX, MIN, AVG, SUM
2007-04-14 01:49:11 +04:00
Selecting alphabetically first user by name.
<code>
SELECT MIN(u.name) FROM User u
</code>
Selecting the sum of all Account amounts.
<code>
SELECT SUM(a.amount) FROM Account a
</code>
* Using an aggregate function in a statement containing no GROUP BY clause, results in grouping on all rows. In the example above
2007-04-14 01:49:11 +04:00
we fetch all users and the number of phonenumbers they have.
<code>
SELECT u.*, COUNT(p.id) FROM User u, u.Phonenumber p GROUP BY u.id
</code>
* The HAVING clause can be used for narrowing the results using aggregate values. In the following example we fetch
2007-04-14 01:49:11 +04:00
all users which have atleast 2 phonenumbers
<code>
SELECT u.* FROM User u, u.Phonenumber p HAVING COUNT(p.id) >= 2
</code>
<code type="php">
// retrieve all users and the phonenumber count for each user
$users = $conn->query("SELECT u.*, COUNT(p.id) count FROM User u, u.Phonenumber p GROUP BY u.id");
foreach($users as $user) {
print $user->name . ' has ' . $user->Phonenumber[0]->count . ' phonenumbers';
}
</code>