SQL 分组后怎么填充在分组结果中没有的数据?create table #tt(Mon varchar(2),plan int,temp int)declare @Month intset @month=1while @month<13begindeclare @plan int,@temp intselect @plan=plan,@temp=temp from TT where mon=@month--这里注意要修改为02等字符串