导入时受MYSQL 0行影响

时间:2015-04-18 22:52:43

标签: mysql csv

我使用以下代码将Windows Excel中的csv上传到mysql数据库。

load data infile 'C:\\Users/path/Desktop/name.csv' into Table tablename
fields terminated by ',' 
lines terminated by '/r/n'
ignore 1 rows
;

当我运行代码时,我得到了结果:

Query OK, 0 rows affected(0.01 sec)
Records: 0 Deleted: 0 Skipped: 0 Warnings: 0

这是我第一次使用mysql,对于这个非常简单的问题感到抱歉。

1 个答案:

答案 0 :(得分:2)

我需要在文件中添加local,以便最终看起来像

load data local infile 'C:path.csv' into Table tablename
fields terminated by ',' 
lines terminated by ';'
ignore 1 rows
;