Answers for "how to print top 10 rows in sql"

SQL
1

sql limit to 5 results

SELECT expressions
FROM tables
[WHERE conditions]
[ORDER BY expression [ ASC | DESC ]]
LIMIT number_rows [ OFFSET offset_value ];
Posted by: Guest on August-14-2020
-1

How to display top 50 rows?

In MySQL, top 50 rows are displayed by using this following query:
SELECT * FROM
LIMIT 0, 50;
Posted by: Guest on December-22-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language