美文网首页
MySQL数据库SQLSTATE[22007]: Invalid

MySQL数据库SQLSTATE[22007]: Invalid

作者: foveni | 来源:发表于2020-02-20 20:17 被阅读0次

SQLSTATE[22007]: Invalid datetime format: 1292 Incorrect datetime value: '' for column 'xxx' at row 1

mysql5.7 datetime 默认值为‘0000-00-00 00:00:00'值无法创建问题解决

mysql5.7报错this is incompatible with sql_mode=only_full_group_by

select @@sql_mode;

解决办法:

不要加STRICT_TRANS_TABLES

执行如下命令即可

set @@global.sql_mode ='ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';

相关文章

网友评论

      本文标题:MySQL数据库SQLSTATE[22007]: Invalid

      本文链接:https://www.haomeiwen.com/subject/xndfqhtx.html