I would like to limit the amount of rows I fetch in MySQL. Can you show me how?
ex:
MySQL and PostgreSQL support OFFSET that is usually used with a LIMIT clause.
OFFSET
LIMIT
SELECT column FROM table LIMIT 10000 SELECT column FROM table LIMIT 10000 OFFSET 10000