Sqlserver
 sql >> Base de données >  >> RDS >> Sqlserver

Transposer les lignes en colonnes en fonction de la colonne ID

vous pouvez utiliser la clause pivot de SQL Server pour cela :

select
    p.*
from Table1
pivot(
    max([Field Selection])
    for [Field Name] in ([Rating 1], [Rating 2], [Rating 3])
) as p

ou vous pouvez pivoter manuellement :

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

démo de violon SQL