Rest API - Pagination Patterns
Given this SQL query for keyset pagination:
What will be the result if the highest id in the table is 102?
SELECT * FROM products WHERE id > 100 ORDER BY id ASC LIMIT 5;
What will be the result if the highest id in the table is 102?
