求同期值

条件判断: 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.数据状态;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值