vote up 0 vote down star

I want to display a list of 16 of the most popular items in my database, but I want that list to be different every time. So from say, the top 50 downloaded items, choose 16 at random and return that in the result. Is that possible with just one query?

flag

3 Answers

vote up 11 vote down check
SELECT * 
    FROM (SELECT FROM table ORDER BY download_no DESC LIMIT 50) AS new_table
    ORDER BY RAND() 
    LIMIT 16
link|flag
vote up 2 vote down

Here is a webpage discussing this problem: http://akinas.com/pages/en/blog/mysql%5Frandom%5Frow/

HTH

link|flag
Thank you, very useful but I decided to go with Residuum's answer. – Andy E Oct 22 at 11:23
vote up -2 vote down

ORDER BY RAND()

link|flag
Great answer, thanks... – Andy E Oct 22 at 11:16
got minus 2 for this ;-( why on earth? – Tzury Bar Yochay Oct 22 at 16:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.