celestedeeva
Programmer
- Aug 27, 2007
- 14
Hello all,
I have a field with the following inside each row stored as text.
ID Value
1 21 34 5
2 21 5
3 21 34
I need to do two things 1st I need to update the field "Value" to:
ID Value
1 21,34,5
2 21,5
3 21,34
2nd I need to create the table to represent:
ID Value
1 21
1 34
1 5
2 21
2 5
3 21
3 34
Any help would be greatly appreciated.
C.