當我想通過導入.csv文件到MySQL數據庫:MySQL的無效UTF8字符串導入CSV表
load data local infile 'C:\\Users\\t_lichtenberger\\Desktop\\tblEnvironmentLog.csv'
into table tblenvironmentlog
character set utf8
fields terminated by ';'
lines terminated by '\n'
ignore 1 lines;
但我得到的下面的錯誤,我不能解釋爲什麼:
Error Code: 1300. Invalid utf8 character string: 'M'
有什麼建議嗎?
什麼是_ON的EXPORT_的設置? –