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

Is it possible to retrieve random rows from table X where flags==0? Using MySql and C#

share|improve this question
Do you want to return a random number of rows, or a fixed number of randomly selected rows? – JohnFx Jun 23 '10 at 15:30

2 Answers

up vote 6 down vote accepted
SELECT *
FROM X
WHERE flags = 0
ORDER BY rand()
LIMIT 1

This retrieves 1 random row. Replace 1 by N to get N random rows.

Caveat: As others pointed out this can be slow as it needs a full table scan. I used to do this with DB2, where this worked perfectly for tables with tens of thousand of rows, but according to the link in tereško's answer, MySQL seems to degrade much quicker.

share|improve this answer
1  
If I am not wrong, should this line always order by first or second row? Rand() will always return a number between 0 or 1.. so will order by column 0 or 1? Not sure – cad Jun 23 '10 at 15:48
select Rand() gets me 0.NUM BUT using ORDER BY rand() does get me completely random results (i just tested with 4 rows) – acidzombie24 Jun 23 '10 at 15:52
According to the MySQL manual: Returns a random floating-point value v in the range 0 <= v < 1.0. So it will not only return 0 or 1, but any value inbetween (floating point). – inflagranti Jun 23 '10 at 15:56
inflagranti: ORDER BY rand() is still blowing my mind, i cant believe how simple it is. – acidzombie24 Jun 23 '10 at 16:01
Why? It defines exactly what you want: a randomly ordered table. And then you fetch some desired N rows from that table (it being random, it doesn't matter that those are the top rows). – inflagranti Jun 23 '10 at 16:07
show 2 more comments

You should never, ever use ORDER BY RAND(). It gets really really slow as the size of table grows. Instead you should read this article.

In case you have irrational fear of learning, here is there solution which would do what you ask for:

SELECT 
    X.x_id,
    X.foobar
FROM X
  JOIN ( 
    SELECT CEIL(RAND()*(SELECT MAX(x_id) FROM X)) AS x_id
  ) AS Choices
  USING ( x_id )

WHERE X.x_id >= Choices.x_id
  AND X.flags = 0

ORDER BY X.x_id LIMIT 1;
share|improve this answer
"Never, ever" is a little extreme, but good article anyway. – Jordan Aug 9 '12 at 6:09

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.