1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/manual/codes/DQL (Doctrine Query Language) - Conditional expressions - Subqueries.php
2006-10-20 19:31:37 +00:00

20 lines
634 B
PHP

<?php
// finding all users which don't belong to any group 1
$query = "FROM User WHERE User.id NOT IN
(SELECT u.id FROM User u
INNER JOIN u.Group g WHERE g.id = ?";
$users = $conn->query($query, array(1));
// finding all users which don't belong to any groups
// Notice:
// the usage of INNER JOIN
// the usage of empty brackets preceding the Group component
$query = "FROM User WHERE User.id NOT IN
(SELECT u.id FROM User u
INNER JOIN u.Group g)";
$users = $conn->query($query);
?>