I have a query which selects 6 names in the database. eg
SELECT names FROM users LIMIT 6
Now I want this query to select a random 6 names in the database table, is this possible? And how
|
I have a query which selects 6 names in the database. eg
Now I want this query to select a random 6 names in the database table, is this possible? And how |
|||
|
|
The simple but slow solution is:
This uses sorting on a random number and has O(n log n) performace. It should run fine for say 10000 rows, but for larger tables it won't scale well. To get it faster you can look at Quassnoi's article MySQL: selecting a number of random rows fast.
This has O(n) performance. |
|||
|
|
|
Here is a other quick solution
|
|||||
|