Jump to content

[SOLVED] Limit to last X entries in a query instead of first X?


pnj

Recommended Posts

I want to order a list by date, but limit it to the 3 most recent dates in the list.  Just the limit part would look like this:

[code]
SELECT x, xdate FROM table ORDER BY xdate DESC LIMIT 3;
[/code]

But then the entries are sorted with the most recent first.

The problem can be solved with a subquery:

[code]SELECT x, xdate from (SELECT x, xdate FROM table ORDER BY xdate DESC LIMIT 3) AS y ORDER BY xdate);[/code]

Is there a way to do this without the subquery?

Cheers
-pnj

Link to comment
Share on other sites

[quote author=artacus link=topic=119373.msg489287#msg489287 date=1166659970]
He DID. The point I was making (unsucessfully, judging by your sarcasm) was that pnj ruled out the ideal solution.
[/quote]
Your point was valid -- IMHO, "valid" includes "practical" under the poster's circumstances.
Link to comment
Share on other sites

  • 2 weeks later...
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.