创建数据库表报以下错误
Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause
将数据库的start_time和end_time那两行改为:
start_time timestamp not null default '0000-00-00 00:00:00' comment '开始时间',
end_time timestamp not null default '0000-00-00 00:00:00' comment '结束时间',
create_time timestamp not null default current_timestamp comment '创建时间',
我也遇到了 ,我的版本是5.5,怎么解决?
注意数据库的版本问题,如果你使用5.6 以前的版本,肯定有这个问题