Jump to content

get last 10 rows in database but order opposite


jwk811

Recommended Posts

nevermind i got it. i did this

 

$sql = "SELECT * FROM chat_messages";
$result = mysql_query($sql);
$num = dbNumRows($result);

$last = 10;
$num = $num - $last;

$sql="SELECT * FROM chat_messages ORDER BY message_id ASC LIMIT $last,$num";

Link to comment
Share on other sites

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

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.