SQL按月分组,没有月份的数据如何显示为0?
现统计全年每月计划性和临时性的次数,模拟数据如下:dateplantemp2013-01-05102013-01-06102013-01-07012013-02-0510...
现统计全年每月计划性和临时性的次数,模拟数据如下:
date plan temp
2013-01-05 1 0
2013-01-06 1 0
2013-01-07 0 1
2013-02-05 1 0
2013-02-06 1 0
2013-03-06 0 1
2013-04-07 1 0
2013-04-08 0 1
2013-05-08 1 0
2013-07-09 0 1
2013-07-10 1 0
想输出2013年各月份的情况,语句如下:SELECT SUBSTRING(date, 6, 2) AS mon,COUNT(paln) AS planed,COUNT(temp) AS tempFROM AWHERE SUBSTRING(date, 1, 4)='2013'GROUP BY SUBSTRING(date, 6, 2)输出结果如下:
Mon Plan Temp
01 2 1
02 2 0
03 0 1
04 1 1
05 1 0
07 1 1
未有数据的月份如何也显示出来?期待结果如下:
Mon Plan Temp
01 2 1
02 2 0
03 0 1
04 1 1
05 1 0
06 0 0
07 1 1
08 0 0
09 0 0
10 0 0
11 0 0
12 0 0
SQL语句因为是简化,可能有错误,只是大体的意思。
主要是WHERE...GROUP BY...的语句如何优化?谢谢各位解答 展开
date plan temp
2013-01-05 1 0
2013-01-06 1 0
2013-01-07 0 1
2013-02-05 1 0
2013-02-06 1 0
2013-03-06 0 1
2013-04-07 1 0
2013-04-08 0 1
2013-05-08 1 0
2013-07-09 0 1
2013-07-10 1 0
想输出2013年各月份的情况,语句如下:SELECT SUBSTRING(date, 6, 2) AS mon,COUNT(paln) AS planed,COUNT(temp) AS tempFROM AWHERE SUBSTRING(date, 1, 4)='2013'GROUP BY SUBSTRING(date, 6, 2)输出结果如下:
Mon Plan Temp
01 2 1
02 2 0
03 0 1
04 1 1
05 1 0
07 1 1
未有数据的月份如何也显示出来?期待结果如下:
Mon Plan Temp
01 2 1
02 2 0
03 0 1
04 1 1
05 1 0
06 0 0
07 1 1
08 0 0
09 0 0
10 0 0
11 0 0
12 0 0
SQL语句因为是简化,可能有错误,只是大体的意思。
主要是WHERE...GROUP BY...的语句如何优化?谢谢各位解答 展开
展开全部
最简单的做法:外关系一个全年月份维度表
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
create table #tt(Mon varchar(2),plan int,temp int)
declare @Month int
set @month=1
while @month<13
begin
declare @plan int,@temp int
select @plan=plan,@temp=temp from TT where mon=@month--这里注意要修改为02等字符串
if(@plan is null) set @plan=0
if(@temp is null) set @temp=0
insert into #tt values (@month,@plan,@temp)
set @month=@month+1
end
select *from #tt
declare @Month int
set @month=1
while @month<13
begin
declare @plan int,@temp int
select @plan=plan,@temp=temp from TT where mon=@month--这里注意要修改为02等字符串
if(@plan is null) set @plan=0
if(@temp is null) set @temp=0
insert into #tt values (@month,@plan,@temp)
set @month=@month+1
end
select *from #tt
追问
非常感谢你,但是必须用存储过程吗,单纯用正常的语句可以实现吗?
追答
你在数据库中建一个表XNumber 只有一列Month int
这有表有12行数据 1~12
select x.Month,isnull(t.Plan,0),isnull(t.Temp,0) from XNumber x left join T t on x.Month=t.Mon
--这个也可以
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询