LIMIT in SQL — a practical guide to SQL LIMIT with clear examples you can reuse in real projects.
SQL Tutorial Series (23/100). Prefer one article? Read the complete SQL tutorial.
Short description
Use for top-N reports and pagination pages.
Limit
SELECT id, name
FROM products
ORDER BY created_at DESC
LIMIT 10;