Mysql - limit the rows in select query

Use the following code to limit the number of records in Select query in mysql.

SELECT * FROM <TABLE_NAME> limit 10;

Search