其他分享
首页 > 其他分享> > TIMESTAMP with implicit DEFAULT value is deprecated

TIMESTAMP with implicit DEFAULT value is deprecated

作者:互联网

今天在安装mysql 5.7.23版本时遇到一个问题。

5.7.6版本以后的初始化命令为 bin/mysqld --initialize,执行后报错:

TIMESTAMP with implicit DEFAULT value is deprecated

查了一下,发现是配置原因,需要在/etc/my.cnf文件中 [mysqld] 下面增加一行

explicit_defaults_for_timestamp=true

之后,再次初始化,这次就没有报错了。

如果是在Windows下安装,则是在my.ini文件下,增加上面这一行。

标签:5.7,DEFAULT,TIMESTAMP,报错,mysqld,implicit
来源: https://blog.51cto.com/u_10272167/2730787