On Thursday 21 November 2002 00:31, JohnMeyer wrote:
> When you specify a limit clause, do you start at 0 or at 1?
> The reason why I ask is that, on one query, it seems to be picking up the
> second record first when I use 1 e.g LIMIT 1, 10.
>
>
>
> ---------------------------------------------------------------------
> Before posting, please check:
>    http://www.mysql.com/manual.php   (the manual)

From: http://www.mysql.com/doc/en/SELECT.html

The LIMIT clause can be used to constrain the number of rows returned by the 
SELECT statement. LIMIT takes one or two numeric arguments. The arguments 
must be integer constants. If two arguments are given, the first specifies 
the offset of the first row to return, the second specifies the maximum 
number of rows to return. The offset of the initial row is 0 (not 1): 

Regards

Georg

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to