I use this query to show results from MySQL:
SELECT * FROM `table`
ORDER BY id ASC
But I want to show only the last 100 rows. How can I make it?
I tried this:
SELECT * FROM `table`
ORDER BY id ASC LIMIT 100
But it shows the first 100 rows, I need the last 100 rows...
Can you help me with this?