What is a fast way to select a random row from a large mysql table?
I'm working in php, but I'm interested in any solution even if it's in another language.
|
|
Grab all the id's, pick a random one from it, and retrieve the full row. If you know the id's are sequential without holes, you can just grab the max and calculate a random id. If there are holes here and there but mostly sequential values, and you don't care about a slightly skewed randomness, grab the max value, calculate an id, and select the first row with an id equal to or above the one you calculated. The reason for the skewing is that id's following such holes will have a higher chance of being picked than ones that follow another id. If you order by random, you're going to have a terrible table-scan on your hands, and the word quick doesn't apply to such a solution. Don't do that, nor should you order by a GUID, it has the same problem. |
||||
|
|
|
MediaWiki uses an interesting trick (for Wikipedia's Special:Random feature): the table with the articles has an extra column with a random number (generated when the article is created). To get a random article, generate a random number and get the article with the next larger or smaller (don't recall which) value in the random number column. With an index, this can be very fast. (And MediaWiki is written in PHP and developed for MySQL.) This approach can cause a problem if the resulting numbers are badly distributed; IIRC, this has been fixed on MediaWiki, so if you decide to do it this way you should take a look at the code to see how it's currently done (probably they periodically regenerate the random number column). |
|||||
|
|
I knew there had to be a way to do it in a single query in a fast way. And here it is: A fast way without involvement of external code, kudos to http://jan.kneschke.de/projects/mysql/order-by-rand/
|
|||||||
|
|
Here's a solution that runs fairly quickly, and it gets a better random distribution without depending on id values being contiguous or starting at 1.
|
||||
|
|
An easy but slow way would be (good for smallish tables)
|
|||||||||
|
|
Maybe you could do something like:
This is assuming your ID numbers are all sequential with no gaps. |
|||
|
In pseudo code:
This assumes that |
|||||
|
|
For selecting multiple random rows from a given table (say 'words'), our team came up with this beauty: SELECT * FROM
|
|||
|
|
|
There is another way to produce random rows using only a query and without order by rand(). It involves User Defined Variables. See how to produce random rows from a table |
|||
|
|
|
In order to find random rows from a table, don’t use ORDER BY RAND() because it forces MySQL to do a full file sort and only then to retrieve the limit rows number required. In order to avoid this full file sort, use the RAND() function only at the where clause. It will stop as soon as it reaches to the required number of rows. See http://www.rndblog.com/how-to-select-random-rows-in-mysql/ |
|||
|
|
|
if you don't delete row in this table, the most efficient way is: (if you know the mininum id just skip it)
|
||||
|
|
|
The classic "SELECT id FROM table ORDER BY RAND() LIMIT 1" is actually OK. See the follow excerpt from the MySQL manual: *If you use LIMIT row_count with ORDER BY, MySQL ends the sorting as soon as it has found the first row_count rows of the sorted result, rather than sorting the entire result.* |
|||||||
|
|
With a order yo will do a full scan table. Its best if you do a select count(*) and later get a random row=rownum between 0 and the last registry |
|||
|
|
|
Add a column containing a calculated random value to each row, and use that in the ordering clause, limiting to one result upon selection. This works out faster than having the table scan that Update: You still need to calculate some random value prior to issuing the
|
|||||
|
|
Take a look at this link by Jan Kneschke or this SO answer as they both discuss the same question. The SO answer goes over various options also and has some good suggestions depending on your needs. Jan goes over all the various options and the performance characteristics of each. He ends up with the following for the most optimized method by which to do this within a MySQL select:
HTH, -Dipin |
|||
|
|
|
Hola Mundo, un ejemplo para hacer RAND de los contenidos de una tabla en mysql y que es optimo para cuando tenemos muchos registros. English: Hello World, an example to RAND for the contents of a table in mysql and that is optimal for when we have many records.
Saludos y espero haber aportado mi granitos de arena. ;-) English: Greetings and I hope I have contributed my bit. ;-) |
||||
|
|
|
I'm a bit new to SQL but how about generating a random number in PHP and using
this doesn't solve the problem with holes in the table. But here's a twist on lassevks suggestion:
Use mysql_num_rows() in PHP create a random number based on the above result:
On a side note just how slow is |
||||
|
|
|
I ran into the problem where my IDs were not sequential. What I came up with this.
The rows returned are approximately 5, but I limit it to 1. If you want to add another WHERE clause it becomes a bit more interesting. Say you want to search for products on discount.
What you have to do is make sure you are returning enough result which is why I have it set to 100. Having a WHERE discount<.2 clause in the subquery was 10x slower, so it's better to return more results and limit. |
|||
|
|
Quick and dirty method:
The complexity of the first query is O(1) for MyISAM tables. The second query accompanies a table full scan. Complexity = O(n) Dirty and quick method:Keep a separate table for this purpose only. You should also insert the same rows to this table whenever inserting to the original table. Assumption: No DELETEs.
If DELETEs are allowed,
The overall complexity is O(1). |
||||
|
|