Typically, you would do that using the LIMIT clause, which can take 2 arguments the first being the offset of the first record to return, and the second being the number of records to return.
Some examples:
This would return the first 15 records from yourTable:
<pre>SELECT * FROM yourTable LIMIT 0,15;</pre>
And this would return records 16-30:
<pre>SELECT * FROM yourTable LIMIT 15,15;</pre>
Last Wiki Answer Submitted: July 13, 2010 6:18 pm by carlosdl63,535 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.