Jump to content

[SOLVED] ORDER BY


mcmuney

Recommended Posts

I rand a query and pulled the last 25 members who signed on, the end of the query looks like this:

 

... ORDER BY signed_on_time DESC LIMIT 0,25;

 

But what I'd like to do is take the 25 results and display them in random order, how can I do that?

Link to comment
Share on other sites

something like

ORDER BY RAND() LIMIT 0,25;

 

I rand a query and pulled the last 25 members who signed on, the end of the query looks like this:

 

... ORDER BY signed_on_time DESC LIMIT 0,25;

 

But what I'd like to do is take the 25 results and display them in random order, how can I do that?

Link to comment
Share on other sites

No, I just can't do a ORDER BY RAND(). By doing that, it will not show the last 25 users who logged in, but take any random 25 users. First, I need to take the 25 users who has logged in last by using ORDER BY signed_on_time DESC, I then need to do a second ORDER BY. Does that make sense?

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.