I want to single rows in multiple value columns to rows. there are more than 90 columns in the table. some of them have multiple values divided by'&$&', some columns are not.
for example
customerid field1 field2 ..... field 99
1 English &$& French
2 d&$&f 1&$&b
-->
customer id field1 field2 ......... field99
1 English
1 French
2 d 1
2 d b
2 f 1
2 f b
How can I accomplish this?? Thank you so much!!