sql >> Database >  >> RDS >> Mysql

Voeg twee tabellen samen in één SQL-query en maak de datumwaarden uniek

Gebruik union all en group by :

SELECT Date, Product, SUM(Inbound) as Inbound, SUM(Outbound) as Outbound
FROM ((SELECT Inbound_Date As Date, Product, SUM(Quantity) as Inbound, 0 as Outbound
      FROM Inbound
      GROUP BY 1,2
     ) UNION ALL
     (SELECT Outbound_Date, Product, 0 as Inbound, COUNT(*)  as Outbound 
      FROM Outbound
      GROUP BY 1,2
     )
    ) io
GROUP BY Date, Product;


  1. SQL SERVER – SQL_NO_CACHE en OPTIE (RECOMPILE)

  2. 2 manieren om alleen de numerieke waarden uit een SQLite-databasekolom te retourneren

  3. De beste manier om het aantal resultaten te krijgen voordat LIMIT werd toegepast

  4. Hoe stel ik het geselecteerde item in een vervolgkeuzelijst in?