MySQL Forums
Forum List  »  General

Re: query that returns nth result
Posted by: Mike Hillyer
Date: January 28, 2005 04:16PM

SELECT * FROM table LIMIT 8,1;

Returns the 8th row.

SEELCT * FROM table LIMIT 8,2;

Returns the 8th and 9th rows.

Mike Hillyer, Technical Writer
MySQL AB, www.mysql.com
Office: +1 403-380-6535
Mobile: +1 403-330-0870
Blog: http://www.openwin.org/mike

Options: ReplyQuote


Subject
Written By
Posted
January 28, 2005 03:56PM
Re: query that returns nth result
January 28, 2005 04:16PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.