I have a csv file. I need to load the content into a table. Some fields contains comma inside, but I face errors in these fields. The command truncate the field in this comma. How can improve my command to ignore the commas inside the fields values. Here is my SQL command:
LOAD DATA INFILE 'C:/myfile.csv'
IGNORE
INTO TABLE db.table
COLUMNS TERMINATED BY ','
OPTIONALLY ENCLOSED BY '"'
ESCAPED BY '\\'
LINES TERMINATED BY '\n'
(col1,col2,col3,col4,col5,col6);
EDIT: My csv file fields are not enclosed by "
EDIT: Example of the data in the csv:
col1 | col2 | col3 | col4 | col5 | col6
------------------------------------------------------------
1111 | 2222 | 3333 | 4444 | 5555 | firstname, lastname
Stored in MySQL in col6 as:
"firstname, lastname" .. followed by all the next fields until the column is filled and truncated.
OPTIONALLY ENCLOSED BY '"'. If you have commas in fields which are not quoted, there is no way for you to load them unless you first edit the file to correct the data. – Michael Berkowski Dec 20 '12 at 0:28