U kunt UNPIVOT
. gebruiken voor één rij als deze om alleen een kolom met waarden te krijgen
SELECT colvalue
FROM
(
SELECT *
FROM Table1
UNPIVOT INCLUDE NULLS
(
colvalue FOR cols IN (col1, col2, col3, col4, col5, col6, col7, col8, col9, col10, ... col50)
)
);
Voorbeelduitvoer:
| COLVALUE | ------------ | 1 | | 2 | | (null) | |..........|
Als je een kolom met kolomnamen uit je draaitabel nodig hebt, gooi dan gewoon de buitenste selectie weg
SELECT *
FROM Table1
UNPIVOT INCLUDE NULLS
(
colvalue FOR cols IN (col1, col2, col3, col4, col5, col6, col7, col8, col9, col10, ... col50)
);
Voorbeelduitvoer:
| COLS | COLVALUE | -------------------- | COL1 | 1 | | COL2 | 2 | | COL3 | (null) | | ..... |......... |
Hier is SQLFiddle demo