Rest API - Pagination Patterns
You have this SQL snippet for keyset pagination:
What is the main problem with this query?
SELECT * FROM users WHERE id >= :last_id ORDER BY id ASC LIMIT 10;
What is the main problem with this query?
