How to request a random row in SQL? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T09:22:22Z http://stackoverflow.com/feeds/question/19412 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql 20 How to request a random row in SQL? sverrejoh 2008-08-21T06:28:49Z 2009-07-02T13:12:02Z <p>What is the best way to request a random row in pure SQL?</p> http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql/19414#19414 6 Answer by Matt Hamilton for How to request a random row in SQL? Matt Hamilton 2008-08-21T06:30:04Z 2008-08-21T06:30:04Z <p>Dunno how efficient this is, but I've used it before:</p> <pre><code>SELECT TOP 1 * FROM MyTable ORDER BY newid() </code></pre> <p>Because GUIDs are pretty random, the ordering means you get a random row.</p> http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql/19415#19415 0 Answer by jeremy Ruten for How to request a random row in SQL? jeremy Ruten 2008-08-21T06:30:29Z 2008-08-21T06:30:29Z <pre><code> SELECT * FROM table ORDER BY RAND() LIMIT 1 </code></pre> http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql/19416#19416 4 Answer by Jon Galloway for How to request a random row in SQL? Jon Galloway 2008-08-21T06:30:49Z 2008-08-21T06:30:49Z <p>You didn't say which server you're using. In older versions of MSSQL, you can use this:</p> <pre><code>select top 1 * from mytable order by newid() </code></pre> <p>In SQL Server 2005 and up, you can use TABLESAMPLE to get a random sample that's repeatable:</p> <pre><code>SELECT FirstName, LastName FROM Contact TABLESAMPLE (1 ROWS) ; </code></pre> http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql/19419#19419 7 Answer by Yaakov Ellis for How to request a random row in SQL? Yaakov Ellis 2008-08-21T06:32:32Z 2008-08-21T06:32:32Z <p>See this post: <a href="http://www.petefreitag.com/item/466.cfm" rel="nofollow">SQL to Select a random row from a database table</a>. It goes through methods for doing this in MySQL, PostgreSQL, Microsoft SQL Server, IBM DB2 and Oracle.</p> http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql/19421#19421 1 Answer by Ishmaeel for How to request a random row in SQL? Ishmaeel 2008-08-21T06:36:10Z 2008-08-21T06:36:10Z <p>Best way is putting a random value in a new column just for that purpose, and using something like this (pseude code + SQL):</p> <pre><code>randomNo = random() execSql("SELECT TOP 1 * FROM MyTable WHERE MyTable.Randomness &gt; $randomNo") </code></pre> <p>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.</p> <p>newid() solution may require a full table scan so that each row can be assigned a new guid, which will be much less performant.</p> <p>rand() solution may not work at all (i.e. with MSSQL) because the function will be evaluated just once, and <em>every</em> row will be assigned the same "random" number.</p> http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql/19422#19422 20 Answer by Cd-MaN for How to request a random row in SQL? Cd-MaN 2008-08-21T06:37:01Z 2008-08-21T10:09:41Z <p>Solutions like Jeremies:</p> <pre><code>SELECT * FROM table ORDER BY RAND() LIMIT 1 </code></pre> <p>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:</p> <pre><code>SELECT * FROM table WHERE num_value &gt;= RAND() * (SELECT MAX(num_value) FROM table) LIMIT 1 </code></pre> <p>This works in constant time, regardless of the table size, if <code>num_value</code> is indexed. One caveat: this assumes that <code>num_value</code> is equally distributed in the range <code>0..MAX(num_value)</code>. If your dataset strongly deviates from this assumption, you will get skewed results (some rows will appear more often than others).</p> http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql/19440#19440 0 Answer by BlaM for How to request a random row in SQL? BlaM 2008-08-21T07:20:31Z 2008-08-21T07:20:31Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql/19568#19568 2 Answer by cnu for How to request a random row in SQL? cnu 2008-08-21T10:06:17Z 2008-08-21T10:06:17Z <p>Found <a href="http://www.petefreitag.com/item/466.cfm" rel="nofollow">this</a> by googling.</p> <p>Select a random row with MySQL:</p> <pre><code>SELECT column FROM table ORDER BY RAND() LIMIT 1 </code></pre> <p>Select a random row with PostgreSQL:</p> <pre><code>SELECT column FROM table ORDER BY RANDOM() LIMIT 1 </code></pre> <p>Select a random row with Microsoft SQL Server:</p> <pre><code>SELECT TOP 1 column FROM table ORDER BY NEWID() </code></pre> <p>Select a random row with IBM DB2</p> <pre><code>SELECT column, RAND() as IDX FROM table ORDER BY IDX FETCH FIRST 1 ROWS ONLY </code></pre> <p>Select a random record with Oracle:</p> <pre><code>SELECT column FROM ( SELECT column FROM table ORDER BY dbms_random.value ) WHERE rownum = 1 </code></pre> http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql/182584#182584 1 Answer by santiiiii for How to request a random row in SQL? santiiiii 2008-10-08T12:56:03Z 2008-10-08T12:56:03Z <p>For SQL Server 2005 and 2008, if we want a random sample of individual rows (from <a href="http://msdn.microsoft.com/en-us/library/ms189108.aspx" rel="nofollow">Books Online</a>):</p> <pre><code>SELECT * FROM Sales.SalesOrderDetail WHERE 0.01 &gt;= CAST(CHECKSUM(NEWID(), SalesOrderID) &amp; 0x7fffffff AS float) / CAST (0x7fffffff AS int) </code></pre> http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql/855844#855844 0 Answer by Sean Turner for How to request a random row in SQL? Sean Turner 2009-05-13T02:52:50Z 2009-05-13T02:52:50Z <p>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. </p> <p>See: <a href="http://www.mssqltips.com/tip.asp?tip=1308" rel="nofollow">http://www.mssqltips.com/tip.asp?tip=1308</a></p> <p>This MSDN page for TableSample includes an example of how to generate an actualy random sample of data.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms189108.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms189108.aspx</a> </p> http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql/922443#922443 0 Answer by Rob Boek for How to request a random row in SQL? Rob Boek 2009-05-28T18:23:06Z 2009-05-28T18:23:06Z <p>For SQL Server</p> <p>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.</p> <p>TABLESAMPLE() is good from a performance standpoint, but you will get clumping of results (all rows on a page will be returned).</p> <p>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 <em><a href="http://msdn.microsoft.com/en-us/library/ms189108.aspx" rel="nofollow">Limiting Results Sets by Using TABLESAMPLE</a></em>:</p> <blockquote> <p>If you really want a random sample of individual rows, modify your query to filter out rows randomly, instead of using TABLESAMPLE. For example, the following query uses the NEWID function to return approximately one percent of the rows of the Sales.SalesOrderDetail table:</p> <pre><code>SELECT * FROM Sales.SalesOrderDetail WHERE 0.01 &gt;= CAST(CHECKSUM(NEWID(),SalesOrderID) &amp; 0x7fffffff AS float) / CAST (0x7fffffff AS int) </code></pre> <p>The SalesOrderID column is included in the CHECKSUM expression so that NEWID() evaluates once per row to achieve sampling on a per-row basis. The expression CAST(CHECKSUM(NEWID(), SalesOrderID) &amp; 0x7fffffff AS float / CAST (0x7fffffff AS int) evaluates to a random float value between 0 and 1.</p> </blockquote> <p>When run against a table with 1,000,000 rows, here are my results:</p> <pre><code>SET STATISTICS TIME ON SET STATISTICS IO ON /* newid() rows returned: 10000 logical reads: 3359 CPU time: 3312 ms elapsed time = 3359 ms */ SELECT TOP 1 PERCENT Number FROM Numbers ORDER BY newid() /* TABLESAMPLE rows returned: 9269 (varies) logical reads: 32 CPU time: 0 ms elapsed time: 5 ms */ SELECT Number FROM Numbers TABLESAMPLE (1 PERCENT) /* Filter rows returned: 9994 (varies) logical reads: 3359 CPU time: 641 ms elapsed time: 627 ms */ SELECT Number FROM Numbers WHERE 0.01 &gt;= CAST(CHECKSUM(NEWID(), Number) &amp; 0x7fffffff AS float) / CAST (0x7fffffff AS int) SET STATISTICS IO OFF SET STATISTICS TIME OFF </code></pre> <p>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.</p> http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql/1074261#1074261 0 Answer by hegemon for How to request a random row in SQL? hegemon 2009-07-02T13:12:02Z 2009-07-02T13:12:02Z <p>Most of the solutions here aim to avoid sorting, but they still need to make a sequential scan over a table.</p> <p>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.</p> <p>The following solution works on PostgreSQL 8.4:</p> <pre><code>explain analyze select * from cms_refs where rec_id in (select (random()*(select last_value from cms_refs_rec_id_seq))::bigint from generate_series(1,10)) limit 1; </code></pre> <p>I above solution you guess 10 various random index values from range 0 .. [last value of id]. </p> <p>The number 10 is arbitrary - you may use 100 or 1000 as it (amazingly) doesn't have a big impact on the response time. </p> <p>There is also one problem - if you have sparse ids <strong>you might miss</strong>. The solution is to <strong>have a backup plan</strong> :) In this case an pure old order by random() query. When combined id looks like this:</p> <pre><code>explain analyze select * from cms_refs where rec_id in (select (random()*(select last_value from cms_refs_rec_id_seq))::bigint from generate_series(1,10)) union all (select * from cms_refs order by random() limit 1) limit 1; </code></pre> <p>Not the <strong>union</strong> <strong>ALL</strong> clause. In this case if the first part returns any data the second one is NEVER executed!</p>