Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

UNION após ORDER BY e LIMIT


Você pode usar parênteses para permitir o uso de ORDER /LIMIT em consultas individuais:
(SELECT * FROM some tables WHERE ... ORDER BY field1 LIMIT 0, 1)
UNION   
(SELECT * FROM some tables WHERE ...)
ORDER BY 1   /* optional -- applies to the UNIONed result */
LIMIT 0, 100 /* optional -- applies to the UNIONed result */