sql limit query code example
Example 1: sql limit results
SELECT * FROM emp ORDER BY sal DESC LIMIT 5;
SELECT TOP 5 * FROM emp ORDER BY sal DESC;
SELECT * FROM ( SELECT * FROM emp ORDER BY sal DESC ) WHERE ROWNUM <= 5;
SELECT * FROM emp ORDER BY sal DESC FETCH FIRST 5 ROWS ONLY;
Example 2: sql limit to 5 results
SELECT expressions
FROM tables
[WHERE conditions]
[ORDER BY expression [ ASC | DESC ]]
LIMIT number_rows [ OFFSET offset_value ];
Example 3: How to display top 50 rows?
In MySQL, top 50 rows are displayed by using this following query:
SELECT * FROM
LIMIT 0, 50;