Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Memorizzazione del risultato pivot dinamico in una tabella temporanea in SQL Server

Se stai usando apply allora perché hai bisogno di ulteriore stessa logica in PIVOT (ovvero Channel + CONVERT(Varchar(4), Year) ) che è già disponibile in apply .

Quindi, userei Value invece in PIVOT :

. . . 
Pivot (sum([Payments]) For [Value] in ([HV2012],[HV2013],[HV2014],[NL2012]) ) p,

Quindi, il tuo Dynamic SQL aggiornato sarebbe:

Declare @SQL varchar(max) = '    
if object_id(''tempdb..##TempTable'') is not null
begin
    drop table ##TempTable
end

create table ##TempTable([Id] int null, ' + 
            Stuff((Select Distinct ','+QuoteName(Channel + CONVERT(Varchar(4), Year)) + ' Varchar(20) null'            
            From [dbo].MyTable
            Order By 1 
            For XML Path('')),1,1,'')+ ')
INSERT INTO ##TempTable
Select *
 From (
        Select A.ID, A.Payments
              ,B.*
         From  [dbo].MyTable a 
         Cross Apply ( values ( Channel + CONVERT(Varchar(4), Year)
                     )) B ([Value])
      ) S
 Pivot (sum([Payments]) For [Value] in 
 (' + Stuff((Select Distinct ','+QuoteName(Channel + CONVERT(Varchar(4), Year))                                                               
                                               From #tm
                                               Order By 1 
                                               For XML Path('')),1,1,'')  + ') ) p'

print @sql

Exec(@SQL)

SELECT * FROM ##TempTable

Non ho apportato modifiche poiché ci sono molte correzioni da fare prima dell'esecuzione.