Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL-Abfrage mit mehreren LIMITS

Warum nicht?

select * from toys where color = 'Yellow' (LIMIT 1)
UNION
select * from toys where color = 'White' (LIMIT 3)
UNION
select * from toys where color = 'Blue' (LIMIT 2)