I uploaded a csv file to MySQL DB but for some reason data from two columns got glued to one.
e.g. the data 0880174V,D should have gone to two different columns.
Is there a way (via sql) i can split the data from this column (i.e. as 0880174V and D) and update the table, without having to delete the record and re-upload? I have a million records.
==CURRENT
Column A Column B
0880174V,D
== EXPECTED
Column A Column B
0880174V D