Say this is my sql:
SELECT title, author, ISBN FROM bs_books ORDER BY ISBN LIMIT 3
It just selects everything fr
You can use OFFSET somenumber to start at a given numeric position. Maybe that's also ok for you?
OFFSET somenumber
If there is a primary key with auto-increment, you can do something like WHERE pk>=somenumber.
WHERE pk>=somenumber