条件判断: case when…then…else…end
null值替换: isnull(字段名,‘替换值’)
全外连接: full join(避免漏掉附表中与主表不匹配的同期值)
select
(case when t1.年 is null then t2.年 else t1.年 end) 年,
(case when t1.月 is null then t2.月 else t1.月 end) 月,
(case when t1.工厂名称 is null then t2.工厂名称 else t1.工厂名称 end) 工厂名称,
(case when t1.数据状态 is null then t2.数据状态 else t1.数据状态 end) 数据状态,
isnull(t1.总数量,0) 总数量,isnull(t2.同期总数量,0) 同期总数量 from
(
select year(日期) 年,month(日期) 月,工厂名称,数据状态,
sum(数量)/10000 总数量
from T_BI_SCQKFX_SCXS s
left join t_bi_factory f
on s.生产工厂ID=f.工厂ID
where year(日期)=year(getdate())
group by year(日期),month(日期),工厂名称,数据状态
) t1
full join(
select year(日期)+1 年,month(日期) 月,工厂名称,数据状态,
sum(数量)/10000 同期总数量
from T_BI_SCQKFX_SCXS s
left join t_bi_factory f
on s.生产工厂ID=f.工厂ID
where year(日期)=year(getdate())-1
and 数据状态<>''
group by year(日期),month(日期),工厂名称,数据状态
) t2
on t1.年=t2.年
and t1.月=t2.月
and t1.工厂名称=t2.工厂名称
and t1.数据状态=t2.数据状态
order by 月,工厂名称,数据状态;
① on t1.年=t2.年+1
where t1.年=year(getdate())
②select year(日期)+1 年 / on t1.年=t2.年+1
where year(日期)=year(getdate())
where year(日期)=year(getdate())-1
select t1.*,t2.同期总数量 from
(
select year(日期) 年,month(日期) 月,工厂名称,sum(数量)/10000 总数量
from T_BI_SCQKFX_SCXS s
left join t_bi_factory f
on s.生产工厂ID=f.工厂ID
group by year(日期),month(日期),工厂名称
) t1
left join
(
select year(日期) 年,month(日期) 月,工厂名称,sum(数量)/10000 同期总数量
from T_BI_SCQKFX_SCXS s
left join t_bi_factory f
on s.生产工厂ID=f.工厂ID
group by year(日期),month(日期),工厂名称
) t2
on t1.年=t2.年+1
and t1.月=t2.月
and t1.工厂名称=t2.工厂名称
where t1.年=year(getdate())
order by 月;
select t1.*,t2.同期总数量 from(
select year(日期) 年,month(日期) 月,数据状态,sum(数量)/10000 总数量
from T_BI_SCQKFX_SCXS
where 数据状态<>''
and year(日期)=year(getdate())
and month(日期)=month(getdate())
and day(日期)<=day(getdate())
group by year(日期),month(日期),数据状态
)t1
left join(
select year(日期)+1 年,month(日期) 月,数据状态,sum(数量)/10000 同期总数量
-- select year(日期) 年,month(日期) 月,数据状态,sum(数量)/10000 同期总数量
from T_BI_SCQKFX_SCXS
where 数据状态<>''
and year(日期)=year(getdate())-1
and month(日期)=month(getdate())
and day(日期)<=day(getdate())
group by year(日期),month(日期),数据状态
)t2
on t1.年=t2.年
-- on t1.年=t2.年+1
and t1.月=t2.月
and t1.数据状态=t2.数据状态;