I would like to limit the amount of rows I fetch in MySQL. Can you show me how?
ex:
in MySQL :
SELECT * FROM `your_table` LIMIT 0, 10000
This will display the first 10000 results from the database.
SELECT * FROM `your_table` LIMIT 10000, 20000
This will show records 10001, 10002, ... ,20000