Convert a row into columns
758537Jun 1 2010 — edited Jun 1 2010Hello Experts,
I have data that looks like :-
field1 field2
1 a,b,1,c,3,4
2 e,3,4,d,f,g
I want a query which would output the data as
field1 field2
1 a
1 b
1 1
1 c
1 3
1 4
2 e
2 3
2 4
etc
Any help would be appreciated.
Thank you