Keyset pagination: the next 3 books with id greater than 5, ordered by id. Columns: id, title.
Keyset pagination: the next 3 books with id greater than 5, ordered by id. Columns: id, title.
Answer
SELECT id, title FROM books WHERE id > 5 ORDER BY id LIMIT 3;