Answers for "mysql print first 10 rows"

SQL
0

how to get first 10 records of a table in mysql

SELECT *FROM yourTableName ORDER BY yourIdColumnName LIMIT 10;
Posted by: Guest on January-20-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language