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

SQL:visualizzazione dinamica con nomi di colonna basati sui valori di colonna nella tabella di origine

Puoi eseguire questa operazione con un PIVOT . Quando esegui il PIVOT puoi farlo in due modi, con un Pivot statico che codificherà le righe da trasformare o un Pivot dinamico che creerà l'elenco delle colonne in fase di esecuzione:

Pivot statico (consulta SQL Fiddle per la demo ):

select id, [user], [engineer], [manu], [OS]
from 
(
    select t.id
        , t.[user]
        , p.ticketid
        , p.label
        , p.value
    from tickets t
    inner join properties p
        on t.id = p.ticketid
) x
pivot
(
    min(value)
    for label in ([engineer], [manu], [OS])
) p

Oppure puoi utilizzare un pivot dinamico (vedi SQL Fiddle for Demo ):

DECLARE @cols AS NVARCHAR(MAX),
    @query  AS NVARCHAR(MAX);

select @cols = STUFF((SELECT distinct ',' + QUOTENAME(p.label) 
                    from tickets t
                    inner join properties p
                        on t.id = p.ticketid
            FOR XML PATH(''), TYPE
            ).value('.', 'NVARCHAR(MAX)') 
        ,1,1,'')

set @query = 'SELECT id, [user], ' + @cols + ' from 
             (
                 select t.id
                        , t.[user]
                        , p.ticketid
                        , p.label
                        , p.value
                    from tickets t
                    inner join properties p
                        on t.id = p.ticketid
            ) x
            pivot 
            (
                min(value)
                for label in (' + @cols + ')
            ) p '

execute(@query)

Entrambe le query restituiranno gli stessi risultati.