SQL 分组后怎么填充在分组结果中没有的数据?

2024-11-28 21:07:06
推荐回答(1个)
回答1:

SQL 分组后怎么填充在分组结果中没有的数据?
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等字符串