how to get only fixed number of rows in mysql code example
Example 1: select a certain number of entries from select mysql
SELECT * FROM `your_table` LIMIT 0, 5000
Example 2: mysql limit
SELECT * FROM `members` LIMIT 1, 2;
SELECT * FROM `your_table` LIMIT 0, 5000
SELECT * FROM `members` LIMIT 1, 2;