how to get first 10 records of a table in mysql

Solutions on MaxInterview for how to get first 10 records of a table in mysql by the best coders in the world

showing results for - "how to get first 10 records of a table in mysql"
Samuel
06 Jun 2019
1SELECT *FROM yourTableName ORDER BY yourIdColumnName LIMIT 10;