一、如何导入?
1、txt文件,每行数据用tab键隔开
2、use 数据库名;
3、输入 load data local infile’文件名’into table 表名(id,name,math,chinese);
二、相关问题
问题描述:
Loading local data is disabled; this must be enabled on both the client
解决方案:
1.点击计算机的属性-高级系统设置-点击环境变量
2.
点击编辑,加入你自己的mysql 的路径一直到bin为止
3、点击确认,关闭
问题描述:
ERROR 2068 (HY000): LOAD DATA LOCAL INFILE file request rejected due to restrictions on access.
解决方案:
1、用win+r打开cmd
2、输入mysql --local-infile=1 -u 你的用户名 -p密码
3、在cmd中输入
use 数据库名;
load data local infile’文件名’into table 表名(id,name,math,chinese);
问题描述:
File ‘E:/studentgrade.txt’ not found (OS errno 2 - No such file or directory)
解决方案:
将 'E:/studentgrade.txt'改为'E:\\studentgrade.txt'