我正在使用以下代码从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,非常抱歉这个非常简单的问题。
最佳答案
我需要将本地添加到文件中,以便最终看起来像
load data local infile 'C:path.csv' into Table tablename
fields terminated by ','
lines terminated by ';'
ignore 1 rows
;