Jump to content

SQL Order By Query Trouble


jjacquay712

Recommended Posts

I have a query that combines a limit and order by statement. The trouble is I only want to sort the data that I have limited, not the entire table. Here is an example:

 

SELECT * FROM comments ORDER BY id DESC LIMIT 38,10;

 

Instead of sorting entries 38 to 48, it sorts the entire table, then selects entries 38 to 48. I can't seem to find away around this, I usually could work around this by using this:

 

SELECT * FROM comments WHERE id > 37 AND id < 49 ORDER BY id DESC

 

But using id's to limit wont work in this particular script. Any ideas about what I could do to fix this?

Link to comment
https://forums.phpfreaks.com/topic/159779-sql-order-by-query-trouble/
Share on other sites

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.