您现在的位置是:课程教程文章

mysql插入数据报错怎么办

2023-12-18 17:13课程教程文章 人已围观

MySQL插入外部数据文件

load data local infile "path/myfile.csv" into table table_name fields terminated by "," lines terminated by  "\r\n" ignore 1 lines;

(推荐教程:mysql数据库学习教程)

报错!

ERROR 1148 (42000): The used command is not allowed with this MySQL version

解决办法1:

SET GLOBAL local_infile=1;

解决办法2:

退出,使用以下命令行重新登录

mysql --local-infile=1 -u root -p

再次插入,成功!!!

load data local infile "path/myfile.csv" into table table_name fields terminated by "," lines terminated by  "\r\n" ignore 1 lines;
Query OK, 2998533 rows affected, 65535 warnings (36.36 sec)
Records: 2998533  Deleted: 0  Skipped: 0  Warnings: 2998533
课程教程:mysql插入数据报错怎么办

上一篇:mysql怎么查找字段不为空的记录

下一篇:没有了

站点信息

  • 文章统计篇文章