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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||
|
|
|
Here is a webpage discussing this problem: http://akinas.com/pages/en/blog/mysql%5Frandom%5Frow/ HTH |
|||
|
|
|
ORDER BY RAND() |
|||||
|
|