vote up 3 vote down star
3

Is there a succinct way to retrieve a random record from a sql server table?

I would like to randomize my unit test data, so am looking for a simple way to select a random id from a table. In English, the select would be "Select one id from the table where the id is a random number between the lowest id in the table and the highest id in the table."

I can't figure out a way to do it without have to run the query, test for a null value, then re-run if null.

Ideas?

flag

Are you sure you want to take this approach? Unit test data should not be random - in fact, you should be guaranteed to get the same results no matter how many times you execute the unit test. Having random data might violate this fundamental principle of unit testing. – rein May 8 at 10:27

4 Answers

vote up 11 vote down check

Yes

SELECT TOP 1 * FROM table ORDER BY NEWID()
link|flag
That works, but man, it's slow. There's gotta be a quicker way... – Tom Ritter Oct 10 '08 at 13:49
It's not slow at all. How many records are we talking about? – Sklivvz Oct 10 '08 at 13:51
Exactly what I was looking for. I had a feeling it was simpler than I was making it. – Jeremy Oct 10 '08 at 13:53
1  
You are assuming that NEWID produces pseudorandom values. There is a good chance it will produced sequential values. NEWID just produces unique values. RAND, however, produces pseudo random values. – Skizz Oct 10 '08 at 13:54
1  
@Skizz, rand does not work like that. A SINGLE random value is generated before the SELECT. So if you try "SELECT TOP 10 RAND()... " you always get the same value – Sklivvz Oct 10 '08 at 14:10
show 4 more comments
vote up 0 vote down

theres a couple of methods here

http://www.brettb.com/SQL_Help_Random_Numbers.asp

link|flag
vote up 1 vote down

Also try your method to get a random Id between MIN(Id) and MAX(Id) and then

SELECT TOP 1 * FROM table WHERE Id >= @yourrandomid

It will always get you one row

link|flag
vote up 0 vote down

genius.. simply works..

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.