首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

球一个SQL语句:自动给养其他月份为0

2013-12-28 
球一个SQL语句:自动补充其他月份为0原始数据:年月销售业绩20135张三1000需要的查询后得出这样的结果年月销

球一个SQL语句:自动补充其他月份为0
原始数据:

年     月  销售    业绩
2013   5   张三    1000



需要的查询后得出这样的结果
年     月  销售    业绩
2013   1   张三    0
2013   2   张三    0
2013   3   张三    0
2013   4   张三    0
2013   5   张三    1000
2013   6   张三    0
...
2013   12   张三    0

或者如果上面比较难,这样也可以
年     月  销售    业绩
2013   1   张三    0
2013   2   张三    0
2013   3   张三    0
2013   4   张三    0
2013   5   张三    0
2013   5   张三    1000
2013   6   张三    0
...
2013   12   张三   0



[解决办法]



--drop table tb

create table tb(年 int, 月 int,  销售 varchar(10), 业绩 int)

insert into tb
select 2013 ,  5 ,  '张三' ,   '1000'


select tt.年,t.number as 月,tt.销售,ISNULL(tb.业绩,0) as 业绩
from  
(
select 年,销售 from tb 
)tt
inner join master..spt_values t
        on t.type = 'P' and t.number >= 1 and t.number <=12
left join tb
       on tb.年 = tt.年
          and tb.销售 = tt.销售
          and tb.月 = t.number
/*
年    月销售业绩
20131张三0
20132张三0
20133张三0
20134张三0
20135张三1000
20136张三0
20137张三0
20138张三0
20139张三0
201310张三0
201311张三0
201312张三0
*/

[解决办法]

--創建數據
create table #tb(年 int, 月 int,  销售 varchar(10), 业绩 int)
 
insert into #tb
select 2013 ,  5 ,  '张三' ,   1000
UNION ALL
select 2013 ,  6 ,  '张三' ,   2000
 
--查詢
SELECT b.年,b.月,b.销售,ISNULL(c.业绩,0) 业绩
FROM
(
SELECT a.年,t.number 月,a.销售
FROM (SELECT DISTINCT 年,销售 FROM #tb) a,master..spt_values t
WHERE t.type = 'P' and t.number >= 1 and t.number <=12
) b
LEFT JOIN #tb c ON b.年=c.年 AND b.月=c.月 AND b.销售=c.销售

热点排行