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

Como mesclar 2 conjuntos de resultados com ordem oposta no MySQL


Tente isso. Demonstração do violinista
SELECT * FROM 
(
      select * from table where id in (1,2,3,4) order by data desc
) Test
UNION
SELECT * FROM 
(
      select * from table where id in (5,6,7) order by data asc
) Test2