You could also use a LIMIT statement, to extract a certain subset of rows. Something like this:
SELECT * FROM SomeTable
LIMIT 3,5; <=== meaning start at row 3 and return 5 rows.
Remember that the first row is actually row 0, so the above statement would actually be returning results starting at the 4th row...