select certain number of rows mysql code example
Example 1: get number of rows in every table mysql
mysql> SELECT table_name, table_rows
->FROM INFORMATION_SCHEMA.TABLES
->WHERE TABLE_SCHEMA = 'business';
Example 2: select a certain number of entries from select mysql
SELECT * FROM `your_table` LIMIT 0, 5000