SQL语句如下所示:
load data infile 'C:/ProgramData/MySQL/MySQL Server 8.0/Uploads/data1.txt' into table user fields terminated by ',' lines terminated by "\n" (name,sex,age,address,email,id,phone);
报错1:
The MySQL server is running with the --secure-file-priv option so it
cannot execute this statement
错误1解决办法:
第一步:我们找到MySQL中的my.ini文件,向该文件中加入如下代码
[mysqld] #Secure File Priv. secure-file-priv=""
第二步:打开任务资源管理器,重启MySQL服务
报错2:
Invalid utf8mb3 character string:"
这是由于我们当前数据库的字符编码和我们文本文件中的不一致导致的
解决办法:
ALTER database wjr DEFAULT CHARSET utf8 COLLATE utf8_general_ci;
其他需要注意的问题:
-- 第一(name,sex,age,address,email,id,phone)可以不写这行代码 -- 字段值之间使用英文逗号分割而不是中文 fields terminated by ',' -- 行与行之间使用换行符相隔 lines terminated by "\n";