MySQL错误TIMESTAMP column with CURRENT_TIMESTAMP的解决方法
程序员文章站
2024-02-28 13:52:04
在部署程序时遇到的一个问题,mysql定义举例如下:复制代码 代码如下:create table `example` ( `id` integer unsign...
在部署程序时遇到的一个问题,mysql定义举例如下:
复制代码 代码如下:
create table `example` (
`id` integer unsigned not null auto_increment,
`created` timestamp not null default current_timestamp,
`lastupdated` timestamp not null on update current_timestamp,
primary key (`id`)
) engine=innodb;
这段sql是我从项目中摘取出来的,在测试机器上一切正常,但是部署到生产机器上mysql报错:
复制代码 代码如下:
error 1293 (hy000): incorrect table definition; there can be only one timestamp column with current_timestamp in default or on update clause.
意思是只能有一个带current_timestamp的timestamp列存在,但是为什么本地测试却没有任何问题呢,本地测试的机器安装的mysql版本5.6.13,而生产机器上安装的却是5.5版本,搜索网络后得知这两种版本之间对于timestamp处理的区别在于:
在mysql 5.5文档有这么一段话:
复制代码 代码如下:
one timestamp column in a table can have the current timestamp as the default value for initializing the column, as the auto-update value, or both. it is not possible to have the current timestamp be the default value for one column and the auto-update value for another column.
而在mysql 5.6.5做出了以下改变:
复制代码 代码如下:
previously, at most one timestamp column per table could be automatically initialized or updated to the current date and time. this restriction has been lifted. any timestamp column definition can have any combination of default current_timestamp and on update current_timestamp clauses. in addition, these clauses now can be used with datetime column definitions. for more information, see automatic initialization and updating for timestamp and datetime.
根据网上的解决方案,可以使用触发器来替代一下:
复制代码 代码如下:
create table `example` (
`id` integer unsigned not null auto_increment,
`created` timestamp not null default current_timestamp,
`lastupdated` datetime not null,
primary key (`id`)
) engine=innodb;
drop trigger if exists `update_example_trigger`;
delimiter //
create trigger `update_example_trigger` before update on `example`
for each row set new.`lastupdated` = now()
//
delimiter ;
上一篇: 三种东西永远不要放到mysql数据库里
下一篇: Java基础教程之接口的继承与抽象类
推荐阅读
-
MySQL错误TIMESTAMP column with CURRENT_TIMESTAMP的解决方法
-
分享一下Mysql常见的几个错误问题及解决方法
-
mysql启动服务报1058错误的解决方法
-
mysql启动的error 2003和1067错误问题解决方法
-
MySQL下PID文件丢失的相关错误的解决方法
-
分享一下Mysql常见的几个错误问题及解决方法
-
mysql启动的error 2003和1067错误问题解决方法
-
MySQL命令行界面中出现字符错误提示的原因及解决方法
-
MySQL常见错误有哪些_MySQL常见错误的快速解决方法
-
linux下mysql提示"mysql deamon failed to start"错误的解决方法