Is it possible to retrieve random rows from table X where flags==0? Using MySql and C#
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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. |
|||||||||||||
|
|
You should never, ever use In case you have irrational fear of learning, here is there solution which would do what you ask for:
|
|||
|
|