I know how to do this in Access, but am having trouble in SQL...
I have a table, Table1:
ID VALUES
1 A,B,C
2 A,D
I need to convert it into the following format in Table2:
ID VALUES
1 A
1 B
1 C
2 A
2 D
How can I do this in SQL? Thanks.
Anna Jaeger
iMIS Database Support
I have a table, Table1:
ID VALUES
1 A,B,C
2 A,D
I need to convert it into the following format in Table2:
ID VALUES
1 A
1 B
1 C
2 A
2 D
How can I do this in SQL? Thanks.
Anna Jaeger
iMIS Database Support