问题 I'm currently importing a CSV file to a MySQL table, with lines like: 2/28/2015 8:46:30 PM,1:40,2,1234567,1435.6071 2/28/2015 8:45:58 PM,0:19,1,1234568,1435.6436 It's basically a CDR from a PBX. However, I don't have control of info source, so I just receive this file as is. So far, columns are: DATE,DURATION,MINUTES,PHONE,BALANCE I've used LOAD DATA INFILE to import my data, like this: LOAD DATA INFILE '10811.csv' INTO TABLE cdr fields terminated by ',' lines terminated by '\n' (@col1, @col2