How can I select the last 10 or so rows of a table when i use a \"ORDER BY DESC\" ?
I tried \"SELECT * FROM tablename ORDER BY date DESC LIMIT -10\" but it doesn\'t work
So I tried \"SELECT * FROM tablename ORDER BY date ASC LIMIT 10\" but it of cause gives me the results in the wrong order.
What can I do?