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?
Find the ISBN for the title you want following-ISBNs for, then simply:
If you want to select it from just the title in one go, you could use a self-join: