Say this is my sql:
SELECT title,
author,
ISBN
FROM bs_books
ORDER BY ISBN
LIMIT 3
It just selects everything from a certain table (title, author, etc..).
Say I would like to select all the items that come after a certain title, not alphabetically or something but just the records after the certain element. How would I approach this?