1. 首页
  2. 数据库
  3. MySQL
  4. MySQL数据库不能导入csv文件的对应方法

MySQL数据库不能导入csv文件的对应方法

上传者: 2020-08-10 05:08:09上传 TXT文件 265B 热度 12次
#---------导入前 打开允许导入文件权限; set global local_infile = 'ON'; #---------导入语句; load data local infile 'd:/Wip.csv' replace into table needs.wip_new fields terminated by ',' optionally enclosed by '"' lines terminated by '\r\n' ignore 1 lines;
下载地址
用户评论