title: Pagination in MySQL tags: sql mysql pagination Simple example ```sql SELECT * FROM table WHERE name = "mr flibble" ORDER BY time LIMIT 10 OFFSET 10; ``` # Resources * [This article at planetscale](https://planetscale.com/blog/mysql-pagination)