복붙노트

[SQL] 하나 개의 SQL 쿼리에서 두 테이블을 병합 및 날짜 값이 고유하게

SQL

하나 개의 SQL 쿼리에서 두 테이블을 병합 및 날짜 값이 고유하게

난 당신이 또한 여기에 SQL 바이올린에서 찾을 수있는 다음과 같은 두 개의 테이블이 있습니다

CREATE TABLE Inbound (
    Inbound_Date DATE,
    Product TEXT,
    InboundType TEXT,
    Quantity VARCHAR(255)
);

INSERT INTO Inbound
(Inbound_Date, Product, InboundType, Quantity)
VALUES 
("2017-05-23", "Product A", "Supplier", "400"),
("2018-09-10", "Product B", "Supplier", "200"),
("2018-12-14", "Product B", "Supplier", "600"),
("2019-01-03", "Product A", "Return", "700"),
("2019-02-15", "Product C", "Supplier", "650"),
("2017-09-04", "Product C", "Supplier", "380"),
("2019-01-09", "Product A", "Return", "120"),
("2019-02-16", "Product A", "Return", "470"),
("2019-02-12", "Product A", "Supplier", "920"),
("2019-02-15", "Product C", "Return", "860"),
("2018-01-03", "Product B", "Supplier", "610");


CREATE TABLE Outbound (
    Outbound_Date DATE,
    Product TEXT,
    OutboundType TEXT
);

INSERT INTO Outbound
(Outbound_Date, Product, OutboundType)
VALUES 
("2017-05-23", "Product A", "Sale_US"),
("2018-09-10", "Product B", "Sale_DE"),
("2018-12-18", "Product B", "Sale_DE"),
("2019-02-01", "Product A", "Sale_DE"),
("2019-02-22", "Product C", "Sale_FR"),
("2017-10-18", "Product C", "Sale_NL"),
("2019-04-12", "Product A", "Sale_US"),
("2019-04-12", "Product A", "Sale_FR"),
("2019-04-12", "Product A", "Sale_FR"),
("2019-04-19", "Product C", "Sale_US"),
("2018-05-17", "Product B", "Sale_DE");

나는 두 테이블을 병합 여기에서 VBA를 사용 :

(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("Outbound_Type")  as Outbound 
 FROM Outbound
 GROUP BY 1,2
)

ORDER BY 1,2;

이 모든 것이 완벽하게 작동합니다.

그러나, 지금은 날짜 고유 표시되도록합니다. 결과는 다음과 같아야합니다 :

Date           Product       Inbound        Outbound
2017-05-13     Product A     400            1
2017-09-04     Product C     380            0
2017-10-18     Product C      0             1
:              :             :              :
:              :             :              :
2018-09-10     Product B     200            1
:              :             :              :
:              :             :              :

나는 그것을 작동하도록 내 코드의 변화에 ​​무엇이 필요합니까?

해결법

  1. ==============================

    1.사용하는 모든 노동 조합 및 그룹 별 :

    사용하는 모든 노동 조합 및 그룹 별 :

    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;
    
  2. ==============================

    2.아래 쿼리를 시도 할 수 있습니다. 먼저 행 및 집계 행 (SQL 바이올린) 수집 :

    아래 쿼리를 시도 할 수 있습니다. 먼저 행 및 집계 행 (SQL 바이올린) 수집 :

    SELECT IO.Date, IO.Product, SUM(IO.Inbound) as Inbound, SUM(IO.Outbound) as Outbound
    FROM (
          SELECT Inbound_Date As Date, Product, Quantity as Inbound, 0 as Outbound
          FROM Inbound    
          UNION ALL  
          SELECT Outbound_Date as Date, Product, 0 as Inbound, 1  as Outbound 
          FROM Outbound   
        ) as IO
    GROUP BY IO.Date, IO.Product;
    
  3. from https://stackoverflow.com/questions/60078622/merge-two-tables-in-one-sql-query-and-make-the-date-values-unique by cc-by-sa and MIT license