Apologies if this has already been asked, but I can't find how to do this.
I have this table:
ID Col1 Col2 Col3 Col4 Col5 Col6
------------------------------------------------------
1 1a 1b 1c 1d 1e 1f
2 2a 2b 2c 2d 2e 2f
3 3a 3b 3c 3d 3e 3f
How do I turn it into a single column table with ALL the values from all 6 columns? PERFORMANCE IS IMPORTANT for what I need it for.
ColValue
------------------
1a
1b
1c
...
2a
2b
2c
...
3a
3b
3c
...