I have a mysql table called "match"
there are 5 fields in match (4 blank col's and one col with CSV data) load,username,username_clean,user_id,member_id
In the load field are many rows with comma separated values (CSV) values in load column are in this format username,username_clean,user_id,member_id that's 4 csv values in the first column "load"
QUESTION: How can I split the 4 values in load and place them in their respective columns?
Please help! Thank you in advance. example. I want the following
|Sara,sara,60,9|
to become: Sara| sara| 60| 9| <--4cols instead of 1