Mysql导入文本文件(Excel另存)乱码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql导入文本文件(Excel另存)乱码相关的知识,希望对你有一定的参考价值。
问题:数据库编码为gb2312,Excel表格另存为Unicode文本文件。
执行命令 load data local infile "f:/aa.txt" into table "tb_test"; 导入的中文内容为乱码。
解决办法:Excel表格加存为csv文件(以","分隔)。
执行命令 load data local infile "f:/aa.csv" into table "tb_test" fields terminated by "," lines terminated by "\n";
导入成功。
参考文章:
http://blog.csdn.net/yuanbohx/article/details/6648408
以上是关于Mysql导入文本文件(Excel另存)乱码的主要内容,如果未能解决你的问题,请参考以下文章