How can we return only the first few rows?
LIMIT constrains the maximum number of rows returned by the database engine.
Pagination, previewing query results, high-performance sampled analytics.
SELECT name, salary
FROM employees
ORDER BY salary DESC
LIMIT 10;Practice typing production-grade SQL code for LIMIT.