Assuming you are using MySQL, using LIMIT will do what you want. The syntax is LIMIT [offset], [row count]. The offset starts counting at 0, so row 1 = 0, row 2 = 1, and so on.
So an example query that started at the 2nd row and returned 1 result would have:
SELECT * FROM table ORDER BY page_1 DESC LIMIT 1, 1
-justin