高分求一条sql语句
table1name销量年月a1200602B2200701A2200702B4200702A2200601B2200601B1200602………………写一条sql语句,...
table1
name 销量 年月
a 1 200602
B 2 200701
A 2 200702
B 4 200702
A 2 200601
B 2 200601
B 1 200602
…… …… ……
写一条sql语句,条件是求200701 到 200702 每人的销量以及每个人去年同期的销量 结果是 :
姓名 销量 去年同期销量
A 2 1
B 6 3
…… …… ……
注意:因为 A 的2007年只有200702的销量,所以求去年同期的时候只求200602的销量
能实现下面的结果可行,谢谢!
姓名 去年同期销量
A 1
B 3
…… …… 展开
name 销量 年月
a 1 200602
B 2 200701
A 2 200702
B 4 200702
A 2 200601
B 2 200601
B 1 200602
…… …… ……
写一条sql语句,条件是求200701 到 200702 每人的销量以及每个人去年同期的销量 结果是 :
姓名 销量 去年同期销量
A 2 1
B 6 3
…… …… ……
注意:因为 A 的2007年只有200702的销量,所以求去年同期的时候只求200602的销量
能实现下面的结果可行,谢谢!
姓名 去年同期销量
A 1
B 3
…… …… 展开
2个回答
展开全部
name 销量 年月
a 1 200602
B 2 200701
A 2 200702
B 4 200702
A 2 200601
B 2 200601
B 1 200602
存储过程:
alter procedure up_Get销量
@DateBegin varchar(20), --统计时间开始,格式:200701
@DateEnd varchar(20) --统计时间结束,格式:200702
as
declare @DateBeginI int,
@DateEndI int
select @DateBeginI = cast(@DateBegin as int)
select @DateEndI = cast(@DateEnd as int)
select name,年月,sum(销量) as 销量 into #tem1
from table1
where cast(年月 as int) >= @DateBeginI and
cast(年月 as int) <= @DateEndI
group by name,年月
--select * from #tem1
select name,年月,sum(销量) as 销量1 into #tem2
from table1
where cast(年月 as int) >= @DateBeginI - 100 and
cast(年月 as int) <= @DateEndI - 100
group by name,年月
--select * from #tem2
select a.name,a.年月,a.销量,b.销量1 as 去年同期销量
from #tem1 a
left outer join #tem2 b on a.name=b.name and cast(a.年月 as int) - 100 = cast(b.年月 as int)
drop table #tem1
drop table #tem2
go执行存储过程:
up_Get销量 200701,200702
结果:
name 年月 销量 去年同期销量
B 200701 2 2
A 200702 2 1
B 200702 4 1
a 1 200602
B 2 200701
A 2 200702
B 4 200702
A 2 200601
B 2 200601
B 1 200602
存储过程:
alter procedure up_Get销量
@DateBegin varchar(20), --统计时间开始,格式:200701
@DateEnd varchar(20) --统计时间结束,格式:200702
as
declare @DateBeginI int,
@DateEndI int
select @DateBeginI = cast(@DateBegin as int)
select @DateEndI = cast(@DateEnd as int)
select name,年月,sum(销量) as 销量 into #tem1
from table1
where cast(年月 as int) >= @DateBeginI and
cast(年月 as int) <= @DateEndI
group by name,年月
--select * from #tem1
select name,年月,sum(销量) as 销量1 into #tem2
from table1
where cast(年月 as int) >= @DateBeginI - 100 and
cast(年月 as int) <= @DateEndI - 100
group by name,年月
--select * from #tem2
select a.name,a.年月,a.销量,b.销量1 as 去年同期销量
from #tem1 a
left outer join #tem2 b on a.name=b.name and cast(a.年月 as int) - 100 = cast(b.年月 as int)
drop table #tem1
drop table #tem2
go执行存储过程:
up_Get销量 200701,200702
结果:
name 年月 销量 去年同期销量
B 200701 2 2
A 200702 2 1
B 200702 4 1
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询