mysql使用load data infile出现错误
mysql使用load data infile出现错误
mysql使用load data infile出现如下错误:
root@noname 21:35:44> load data infile '/company.csv' into table company character set utf8 fields terminated by ',' optionally enclosed by '"' escaped by '"'
-> (src_company_id,company_name,province,start_date,econ_kind,oper_name,raw_regist_capi,regist_capi,
regist_capi_desc,cur_type,regist_no,credit_code,org_no,address,scope,term_start,term_end,belong_org,
check_date,end_date,status,is_listed,is_neeq,is_expired,main_category,big_category,src_created_date,
src_updated_date)
-> ;
error 1292 (22007): incorrect datetime value: '' for column 'end_date' at row 1
这里的原因在于,end_date这个字段在csv文件中是空值。如果表中对应的字段允许为空的话,就可以按照下面的方式处理:注意上色的。
load data infile '/company.csv' into table company character set utf8 fields terminated by ',' optionally enclosed by '"' escaped by '"'
(src_company_id,company_name,province,start_date,econ_kind,oper_name,raw_regist_capi,regist_capi,
regist_capi_desc,cur_type,regist_no,credit_code,org_no,address,scope,term_start,term_end,belong_org,
check_date,@end_date1,status,is_listed,is_neeq,is_expired,main_category,big_category,
src_created_date,src_updated_date)
set end_date=if(@end_date1='',null, @end_date1);
上一篇: 桂花乌龙茶的起源是什么
下一篇: 玩转python爬虫之正则表达式
推荐阅读
-
mysql 的load data infile
-
mysql Load Data InFile 的用法
-
mysql遇到load data导入文件数据出现1290错误的解决方案
-
MySQL通过 LOAD DATA INFILE 批量导入数据
-
mysql使用load data infile出现错误
-
mysql使用load data infile导入数据错误
-
Java利用MYSQL LOAD DATA LOCAL INFILE实现大批量导入数据到MySQL
-
SQLyog安装使用教程:SQLyog13连接MySQL8.0出现2058错误解决方法
-
Mysql错误积累001-load data导入文件数据出现1290错误
-
mysql 开发进阶篇系列 50 表的数据导入(load data infile,mysqlimport )