I am using load data infile to import data from csv to mysql table, but data is not inserted properly,
in the csv file fields are enclosed by ", e.g. "field1","field2","field3" some fields consist of multiple lines..
here is my script..
load data local infile 'my.csv' into table mytable fields terminated by ',' enclosed by '"' lines terminated by '\n'
please help