Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In MySQL I can use the RAND() function, is there any alternative in SQLite 3?

share|improve this question

3 Answers

up vote 15 down vote accepted

using random():

SELECT foo FROM bar
  WHERE id >= (abs(random()) % (SELECT max(id) FROM bar))
  LIMIT 1;

EDIT (by QOP): Since the docs on SQLite Autoincremented columns states that:

The normal ROWID selection algorithm described above will generate monotonically increasing unique ROWIDs as long as you never use the maximum ROWID value and you never delete the entry in the table with the largest ROWID. If you ever delete rows, then ROWIDs from previously deleted rows might be reused when creating new rows.

The above is only true if you don't have a INTEGER PRIMARY KEY AUTOINCREMENT column (it will still work fine with INTEGER PRIMARY KEY columns). Anyway, this should be more portable / reliable:

SELECT foo FROM bar
  WHERE _ROWID_ >= (abs(random()) % (SELECT max(_ROWID_) FROM bar))
LIMIT 1;

ROWID, _ROWID_ and OID are all aliases for the SQLite internal row id.

share|improve this answer
1  
+1, This is way faster than the other options provided that id is index. – Emil H Aug 10 '09 at 7:46
12  
Yes this solution is faster, but assumes id starts at 1 and has no gaps. Otherwise rows that follow gaps are "randomly" chosen more frequently than other rows. – Bill Karwin Aug 10 '09 at 8:28
2  
@Bill, thanks for pointing out the problem on my answer – dfa Aug 10 '09 at 11:55
Also the lowest ID will almost never be selected. – Lucky Aug 16 '09 at 2:04
1  
Wow, my query went from >300ms to 1ms! – Louis Mar 8 '11 at 5:37
show 1 more comment
SELECT * FROM table ORDER BY RANDOM() LIMIT 1;
share|improve this answer
1  
And for the record the limit doesn't have to be 1 if you want to order the entire table randomly and access all of the rows in that random order. – lemontwist Jul 31 '12 at 20:06

Solved:

SELECT * FROM table ORDER BY RANDOM() LIMIT 1;
share|improve this answer
8  
I disagree. We have two bits of info here now, how to select a single record randomly,how to list all the records randomly. I have never needed to do either, but if I do, now I know how. I also know that MySQL does it different to SQLlite. A super technical question would be more impressive, but less useful. – Chris Huang-Leaver Aug 10 '09 at 8:01
My first thought was that there wasn't any function to order results randomly, or if there was such a feature / function it would be considerable more obscure - that's what happens with SQLite triggers for instance. – Alix Axel Aug 10 '09 at 9:30
I voted this up because he actually answered first. – Nate Bird Apr 29 '11 at 14:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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