LIMIT
SELECT description, rating, category FROM mock_items WHERE description @@@ 'shoes' LIMIT 5;
OFFSET
SELECT description, rating, category FROM mock_items WHERE description @@@ 'shoes' LIMIT 1 OFFSET 2;
Was this page helpful?