How can I best write a query that selects 10 rows randomly from a total of 600k?
|
A great post handling several cases, from simple, to gaps, to non-uniform with gaps. http://jan.kneschke.de/projects/mysql/order-by-rand/ For most general case, here's how you do it:
This supposes that the distribution of ids is equal, and that there can be gaps in the id list. See the article for more advanced examples |
|||||
|
|
|||||||||||||||
|
|
I am getting fast queries (around 0.5 seconds) with a slow cpu, selecting 10 random raws in a 400K registers MySQL database non-cached 2Gb size. See here my code: Fast selection of random rows in MySQL
|
|||||
|
|
Well if you have no gaps in your keys and they are all numeric you can calculate random numbers and select those lines. but this will probably not be the case. So one solution would be the following:
which will basically ensure that you get a random number int he range of your keys and then you select the next best which is greater. you ahve to do this 10 times. however this is NOT really reandom because your keys will mist likely not be distributed evenly. its really a big problem and not easy to solve fullfilling all the requirements, mysqls rand() is the best youc an get if you really want 10 random rows. there is however a nother solution which is fast but also has a tradoff when it comes to randomness, but may suit you better. read about it here: How can i optimize MySQL's ORDER BY RAND() function? question is how random do you need it to be. can you explain a bit more so i can give you a good solution. for example a company i worked with had a solution where they needed absolute randomness extremely fast. they ended up with pre populating the database with random values that were selected descending and set to different random values afterwards again. if you hardly ever update you could also fill an incrementing id so you have no gaps and just can calculate random keys before selecting... it depends on the use case! |
|||||||
|
|
I used this http://jan.kneschke.de/projects/mysql/order-by-rand/ posted by Riedsio (i used the case of a stored procedure that returns one or more random values):
In the article he solves the problem of gaps in ids causing not so random results by maintaining a table (using triggers, etc...see the article); I'm solving the problem by adding another column to the table, populated with contiguous numbers, starting from 1 (edit: this column is added to the temporary table created by the subquery at runtime, doesn't affect your permanent table):
In the article i can see he went to great lengths to optimize the code; i have no ideea if/how much my changes impact the performance but works very well for me. |
||||
|
|
|
I guess this is the best possible way..
|
|||
|
|
This is how I do it:
I like it because does not require other tables, it is simple to write, and it is very fast to execute. |
|||
|
