I'm making web-chat and I want to show last added messages at the bottom of the page and I want limit 10 last messages.
My sql query now looks like:
SELECT * FROM messages WHERE chat_room=5 LIMIT 10
But this works not like I want. If I have 20 items in table with messages, this query selects items from 1 to 10 but I want from 10 to 20 and last messages at the bottom.
Table messages has column create_date in UNIX time format (INT)
How to change this query?