Rest API - Pagination Patterns
A developer wrote this query for keyset pagination:
What is the issue with this query?
SELECT * FROM messages WHERE timestamp > :last_timestamp ORDER BY timestamp DESC LIMIT 20;
What is the issue with this query?
