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

Comment simuler UNPIVOT dans Access ?

Cette requête...

SELECT ID, A, B, C, [Key 1] AS key_field
FROM tblUnpivotSource
UNION ALL
SELECT ID, A, B, C, [Key 2] AS key_field
FROM tblUnpivotSource
UNION ALL
SELECT ID, A, B, C, [Key 3] AS key_field
FROM tblUnpivotSource;

... renvoie ce jeu d'enregistrements (en utilisant vos exemples de valeurs de table comme tblUnpivotSource ) ...

ID A B C key_field
-- - - - ---------
 1 x y z         3
 2 x y z        57
 1 x y z       199
 2 x y z       234
 1 x y z       452
 2 x y z       452