Actually, at least as MySQL is concerned, limits
are done a little differently:
SELECT * FROM table ORDER BY field LIMIT <offset>,<count>;
SELECT * FROM table ORDER BY field LIMIT 23,5;
would select rows 23-27.
SELECT * FROM table ORDER BY field LIMIT 23;
would select rows 0-23 since a single param to LIMIT is interpretted as 'LIMIT 0,<number>'
-Rich