Jump to content

Need Help Selecting Last 10 Rows From Database


gaza165

Recommended Posts

I am trying to run a query to fetch the last 10 records from a table... however

 

$message = mysql_query("SELECT * FROM chat ORDER BY timestamp DESC LIMIT 0,10");

 

this brings back the first 10 not the last 10....

 

help!!

Link to comment
Share on other sites

$message = mysql_query("SELECT * FROM chat ORDER BY timestamp LIMIT 10");

 

Nope still brings back the first 10 records...

 

...

 

SELECT * FROM chat ORDER BY timestamp DESC LIMIT 10

 

AND

 

SELECT * FROM chat ORDER BY timestamp LIMIT 10

 

Should not both bring back the same first 10 records.  Can I see a sample record from your table?

Link to comment
Share on other sites

I don't know what else to say, this should work:

 

SELECT * FROM chat ORDER BY timestamp DESC LIMIT 10

 

You could try this, which should be just as reliable:

 

SELECT * FROM chat ORDER BY id DESC LIMIT 10

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.