0
我需要比較同一表中同一列中的2017年和2016年之間的數據。如何比較同一表中同一列中的數據
現在我用2個查詢:
第一次查詢:
SELECT
SUM(a.netamt) AS netamt2017, b.store_name, c.budget
FROM
site_sales a
JOIN
site_store b ON b.storenum = a.storenum
JOIN
site_kpimthslsbgt c ON b.storenum = c.storenum
WHERE
c.busidate = '2017-01'
AND a.busidate >= '2017-01-01'
AND a.busidate <= '2017-01-15'
GROUP BY
a.storenum
這對於找到netamt 2017年
第二查詢:
SELECT
SUM(a.netamt) AS netamt2016, b.store_name, c.budget
FROM
site_sales a
JOIN
site_store b ON b.storenum = a.storenum
JOIN
site_kpimthslsbgt c ON b.storenum = c.storenum
WHERE
c.busidate = '2017-01'
AND a.busidate >= '2016-01-01'
AND a.busidate <= '2016-01-15'
GROUP BY
a.storenum
這種尋找「Netamt 2016 」。
我需要這2個查詢結合起來,形成該表:
Here is example for the output
非常感謝您的回答。它工作得很好! :) –