vote up 1 vote down star

I have a MySQL table with a column called "priority". The column can have two values: high or low. I want to select 8 records from the table at random, but I want 6 of them to be high priority, and 2 of them to be low priority. If possibly, I would like to do it in one SQL statement. Is there any way to do two LIMITS in one query based on this kind of criteria?

flag

3 Answers

vote up 7 vote down check
SELECT t1.*
  FROM table t1
 WHERE priority = 'high'
 ORDER BY rand() Limit 8
UNION ALL
SELECT t1.*
  FROM table t1
 WHERE priority = 'low'
 ORDER BY rand() Limit 2
link|flag
Thank you very much. – andyashton Oct 21 at 16:21
you're welcome. – najmeddine Oct 21 at 16:32
vote up 0 vote down

Use a union:

SELECT * FROM table WHERE priority = 'high' ORDER BY RAND() LIMIT 8 
UNION ALL
SELECT * FROM table WHERE priority = 'low' ORDER BY RAND() LIMIT 2
link|flag
vote up 0 vote down

Use a union, so you have two select statements in one, basically.

link|flag

Your Answer

Get an OpenID
or

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