文件名称:MySQL数据库不能导入csv文件的对应方法
文件大小:265B
文件格式:TXT
更新时间:2022-04-18 10:15:05
MySQL数
#---------导入前 打开允许导入文件权限; 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;