Good day
I have table like this:
Table1
463,"Prawn,Ging","NONE","22","22","Africa,Japan,China","01/01/1999 - 10/04/2017","NONE.
462,"GOLD,Fish","NONE","22","22","China","01/01/1999 - 10/04/2017","NONE.
461,"Long Dog","NONE","22","22","USA,France,Italy,Canada","01/01/1999 - 10/04/2017","NONE.
460,"Cat","NONE","22","22",,,,"NONE.
And I need table or select like this
Table1
Column1 Column2 Column3 Column3 Column4 Column5 Column6 Column7
463 Prawn,Ging NONE 22 22 Africa,Japan,China 01/01/1999 - 10/04/2017 NONE.
462 GOLD,Fish NONE 22 22 China 01/01/1999 - 10/04/2017 NONE.
461 Long Dog NONE 22 22 USA,France,Italy,Canada 01/01/1999 - 10/04/2017 NONE.
460 Cat NONE 22 22 NONE.
I read How to fix the embedded text qualifier issue while exporting data to CSV flat file?
but I think best option to solve this issue is use funtion REPLACE(short_description,"\"","\"\"")
Do you have any idea how to put true select or update?
Thank you.