mysql select bottom 10 rows code example
Example 1: mysql select bottom 10 rows
SELECT * FROM `your_table` LIMIT 5, 5
Example 2: mysql select bottom 10 rows
SELECT id FROM table ORDER BY id ASC LIMIT 4,5
Example 3: mysql select bottom 10 rows
SELECT * FROM `your_table` LIMIT 0, 10
Example 4: mysql select bottom 10 rows
SELECT * FROM `your_table` ORDER BY 1 DESC LIMIT 5, 5