What is the best way to request a random row in pure SQL?
|
|
Solutions like Jeremies:
work, but they need a sequential scan of all the table (because the random value associated with each row needs to be calculated - so that the smallest one can be determined), which can be quite slow for even medium sized tables. My recommendation would be to use some kind of indexed numeric column (many tables have these as their primary keys), and then write something like:
This works in constant time, regardless of the table size, if |
|||
|
|
|
|
See this post: SQL to Select a random row from a database table. It goes through methods for doing this in MySQL, PostgreSQL, Microsoft SQL Server, IBM DB2 and Oracle. |
||
|
|
|
|
Dunno how efficient this is, but I've used it before:
Because GUIDs are pretty random, the ordering means you get a random row. |
||
|
|
|
|
You didn't say which server you're using. In older versions of MSSQL, you can use this:
In SQL Server 2005 and up, you can use TABLESAMPLE to get a random sample that's repeatable:
|
||
|
|
|
Found this by googling. Select a random row with MySQL:
Select a random row with PostgreSQL:
Select a random row with Microsoft SQL Server:
Select a random row with IBM DB2
Select a random record with Oracle:
|
||
|
|
|
Best way is putting a random value in a new column just for that purpose, and using something like this (pseude code + SQL):
This is the solution employed by the MediaWiki code. Of course, there is some bias against smaller values, but they found that it was sufficient to wrap the random value around to zero when no rows are fetched. newid() solution may require a full table scan so that each row can be assigned a new guid, which will be much less performant. rand() solution may not work at all (i.e. with MSSQL) because the function will be evaluated just once, and every row will be assigned the same "random" number. |
||
|
|
|
For SQL Server 2005 and 2008, if we want a random sample of individual rows (from Books Online):
|
||
|
|
|
|
|
||
|
|
|
|
I have to agree with CD-MaN: Using "ORDER BY RAND()" will work nicely for small tables or when you do your SELECT only a few times. I also use the "num_value >= RAND() * ..." technique, and if I really want to have random results I have a special "random" column in the table that I update once a day or so. That single UPDATE run will take some time (especially because you'll have to have an index on that column), but it's much faster than creating random numbers for every row each time the select is run. |
||
|
|
|
|
Be careful because TableSample doesn't actually return a random sample of rows. It directs your query to look at a random sample of the 8KB pages that make up your row. Then, your query is executed against the data contained in these pages. Because of how data may be grouped on these pages (insertion order, etc), this could lead to data that isn't actually a random sample. See: http://www.mssqltips.com/tip.asp?tip=1308 This MSDN page for TableSample includes an example of how to generate an actualy random sample of data. |
||
|
|
|
|
For SQL Server newid()/order by will work, but will be very expensive for large result sets because it has to generate an id for every row, and then sort them. TABLESAMPLE() is good from a performance standpoint, but you will get clumping of results (all rows on a page will be returned). For a better performing true random sample, the best way is to filter out rows randomly. I found the following code sample in the SQL Server Books Online article Limiting Results Sets by Using TABLESAMPLE:
When run against a table with 1,000,000 rows, here are my results:
If you can get away with using TABLESAMPLE, it will give you the best performance. Otherwise use the newid()/filter method. newid()/order by should be last resort if you have a large result set. |
||
|
|
|
|
Most of the solutions here aim to avoid sorting, but they still need to make a sequential scan over a table. There is also a way to avoid the sequential scan by switching to index scan. If you know the index value of your random row you can get the result almost instantially. The problem is - how to guess an index value. The following solution works on PostgreSQL 8.4:
I above solution you guess 10 various random index values from range 0 .. [last value of id]. The number 10 is arbitrary - you may use 100 or 1000 as it (amazingly) doesn't have a big impact on the response time. There is also one problem - if you have sparse ids you might miss. The solution is to have a backup plan :) In this case an pure old order by random() query. When combined id looks like this:
Not the union ALL clause. In this case if the first part returns any data the second one is NEVER executed! |
||
|
|
