1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/codes/Basic Components - Query - LIMIT and OFFSET - limiting the query results.php
2006-07-23 21:08:06 +00:00

12 lines
245 B
PHP

<?php
// find the first ten users and their emails
$coll = $session->query("FROM User, User.Email LIMIT 10");
// find the first ten users starting from the user number 5
$coll = $session->query("FROM User LIMIT 10 OFFSET 5");
?>