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

Come posso usare il pivot?

Ho controllato i tuoi post tecnici qui e ho scoperto che non vuoi usare PIVOT perché restituisce solo risultati aggregati. UNPIVOT ti avvicinerà molto a ciò che stai cercando e quindi eseguirà semplicemente un join sul tavolo per ogni colonna. Ho fatto un esempio con i dati che hai fornito di seguito:

----Create the table and insert values as portrayed in the previous example.
CREATE TABLE pvt (EmpId int, Day1 char(1), Day2 char(1), Day3 char(1));
CREATE TABLE pvt2 (EmpId int, DayNum CHAR(4), DayNums CHAR(4));
GO
INSERT INTO pvt VALUES (1,'A','P','P');
INSERT INTO pvt VALUES (2,'P','P','P');
GO
--Unpivot the table.
INSERT INTO pvt2
SELECT EmpId,DayNum, DayNums
FROM 
   (SELECT EmpId, Day1, Day2, Day3
   FROM pvt) p
UNPIVOT
   (DayNums FOR DayNum IN 
      (Day1,Day2,Day3)
)AS unpvt;
GO
SELECT
 a.DayNum,
 a.DayNums,
    b.DayNums
FROM pvt2 a
 JOIN pvt2 b ON a.DayNum = b.DayNum
  AND a.EmpId=1
  AND b.EmpId = 2

L'esecuzione del codice sopra riportato restituirà:

Exp   1  2  3 as EmpId
----------
Day1  A  P  ....
Day2  P  P  ...
Day3  P  P  ...

L'unica altra soluzione che conosco è SQL dinamico ed è più lento e presenta i suoi pericoli. Tuttavia, se stai eseguendo il codice una volta, potrebbe anche funzionare.