Jump to content

Select random but limit 1 to show from last 10 entries


Recommended Posts

Right now I have a little over 400 entries but I am trying to figure out how to only pull 1 entry from the last 10 inserted.  Currently I have:

SELECT * FROM $tablename ORDER BY RAND() LIMIT 1

I do know I need to do order by kuid asc  but not sure how to pull 1 out of the last 10 inserted randomly on page refresh.

SELECT * FROM
    (
    SELECT * FROM $tablename ORDER BY id DESC LIMIT 10
    ) last10
ORDER BY RAND() LIMIT 1;

(if recs have timestamp, use that to get latest 10 records)

Edited by Barand
5 hours ago, SkyRanger said:

Did not know you could use a select within a select.  Learning something new every day

That particular subquery creates a temporary table called "last10" which contains your last ten records. See the link in my sig.

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.