How can you get first 5 records from the Table mysql code example
Example: how to get first 10 records of a table in mysql
SELECT *FROM yourTableName ORDER BY yourIdColumnName LIMIT 10;
SELECT *FROM yourTableName ORDER BY yourIdColumnName LIMIT 10;