我有两个疑问
1)
select Year , Month, Sum(Stores) from ABC ;
2)
select Year, Month , Sum(SalesStores) from DEF ;
我想要这样的结果:
**Year, Month , Sum(Stores), Sum(SalesStores)**
我该怎么做 ?
我试过联合和联合所有
select Year , Month, Sum(Stores) from ABC union
select Year, Month , Sum(SalesStores) from DEF ;
我在输出中只看到 3 列
Year, Month Sum(Stores).
以下是表格:
Year, Month Stores
Year Month SalesStores
有没有办法以我想看到的格式查看结果?