I have a table structure like the following:
ID|Letter1|Letter2|Letter3|...n
-------------------------------
1 A C NULL ...
2 A D D
3 P F M
Using select I have to load this into a more normalized table like:
ID|Letter|
1 A
1 C
1 NULL
1 ...
2 A
2 D
2 D
3 P
3 F
3 M
I have tried different ways of doing this:
INSERT INTO Normalized
(ID, Letter)
SELECT ID, LETTER1
FROM Denormalized
And just do that over and over again for each iteration of the letter. My problem with that is that I have over 100 letter fields of this bad design and I have tried to wrap my head around different ideas but nothing has come to fruition.
My question is does anyone know a dynamic way to insert each letter from a denormalized table to a normalized table while creating a different row for each letter?
Returns (Dynamic version with XML omits NULLS)
Returns