How to migrate the comma separated values from one table to another table?
suppose we have table i.e XYZ and we have comma separated values in few columns i.e( column_name and values are A,B,C,D).Now i have to migrate these comma separated values into new table i.e PQR.
Example:
Table1
column_name1 complexion
values : VF,F,AVG etc..
column_name2 profession
values : TEA,LECT etc...
now i want to migrate into another table:Table2
column_name1 complexion
values:VF
values:F
values:AVG
column_name2 profesion
values:TEA
values:LECT
suppose we have table i.e XYZ and we have comma separated values in few columns i.e( column_name and values are A,B,C,D).Now i have to migrate these comma separated values into new table i.e PQR.
Example:
Table1
column_name1 complexion
values : VF,F,AVG etc..
column_name2 profession
values : TEA,LECT etc...
now i want to migrate into another table:Table2
column_name1 complexion
values:VF
values:F
values:AVG
column_name2 profesion
values:TEA
values:LECT
Comment