Is there any way to get the last 3 comments with Order by id asc ?
Here is my table structure: table name: comments

I am using this query now:
SELECT * FROM `comments` ORDER BY id ASC LIMIT 0 , 3
But it returns the result, which is obvious:

But I want to show the last 3 entries, but in ascending order. Like this:

sql php mysql
user2792091
source share