I have a csv file with four columns. Structure of this file is as shown below.
"Id","Title","Content","Author" "1","......","..............","..." "2",".............","....................","......"
The command below
LOAD DATA LOCAL INFILE '/data/trn.csv' INTO TABLE TR_DATA FIELDS TERMINATED BY ',' ENCLOSED BY '"' IGNORE 1 LINES ;
does not parse correctly and puts wrong inputs to fields. How can I parse correctly?