Limiting a Selection Using LIMIT
-- LIMIT row_count -- LIMIT skip_count, row_count SELECT * FROM t LIMIT 10; SELECT * FROM t LIMIT 20,10;