Jump to content

get last 10 rows in database but order opposite


jwk811

Recommended Posts

No, that is inefficient. You only need to do a single query. The exact same question was asked just a couple days ago and a solution provided:

http://www.phpfreaks.com/forums/index.php/topic,300778.msg1423631.html#msg1423631

 

SELECT *
FROM (SELECT * FROM chat_messages ORDER BY message_id DESC LIMIT 10) as last10
ORDER BY last10.message_id ASC

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.