Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

Transpor linhas para colunas com base na coluna de ID


você pode usar a cláusula dinâmica do SQL Server para isso:
select
    p.*
from Table1
pivot(
    max([Field Selection])
    for [Field Name] in ([Rating 1], [Rating 2], [Rating 3])
) as p

ou você pode girar manualmente:
select
    ID,
    max(case when [Field Name] = 'Rating 1' then [Field Selection] end) as [Rating 1], 
    max(case when [Field Name] = 'Rating 2' then [Field Selection] end) as [Rating 2],
    max(case when [Field Name] = 'Rating 3' then [Field Selection] end) as [Rating 3]
from Table1
group by ID

demonstração do sql fiddle