Latest Additions

April 25, 2012
UDT - UDP Data Transfer
UDP Data Transfer UDP based Data Transfer Protocol UDT is a high performance data transfer...
April 09, 2011
FTP Queue Server
Design Overview The goal was to develop a revision to the standard FTP server which allows people...

Site Search

Suggested Reading

none

Pages linked to here

none

SQL Select Random

Select a random row with MySQL


 SELECT column FROM table
 ORDER BY RAND()
 LIMIT 1

Select a random row with PostgreSQL


 SELECT column FROM table
 ORDER BY RANDOM()
 LIMIT 1

Select a random row with Microsoft SQL Server


 SELECT TOP 1 column FROM table
 ORDER BY NEWID()

Select a random row with IBM DB2


 SELECT column, RAND() as IDX 
 FROM table 
 ORDER BY IDX FETCH FIRST 1 ROWS ONLY

Thanks Tim

Select a random record with Oracle


 SELECT column FROM
 ( SELECT column FROM table
 ORDER BY dbms_random.value )
 WHERE rownum = 1

Thanks Mark Murphy
This topic was last modified on 10-03-2010 and has had 383 hits. These are popular related words: