Mysql
 sql >> Database >  >> RDS >> Mysql

Combina (Unisci) due colonne da due tabelle in una query SQL

SELECT Send_Date Event_Date, Product, FlowType FROM Send_Orders
UNION ALL
SELECT Return_Date, Product, FlowType FROM Return_Orders
ORDER BY 1,2