问答详情
源自:4-1 数据库设计与编码

数据库创建表问题

创建数据库表报以下错误

Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause

提问者:慕九州4188713 2019-06-24 12:46

个回答

  • 慕沐4503986
    2019-09-11 00:32:10

    将数据库的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 '创建时间',

  • 小小小小猿
    2019-08-08 23:59:40

    我也遇到了 ,我的版本是5.5,怎么解决?   

  • 该更新了
    2019-06-25 11:21:26

    注意数据库的版本问题,如果你使用5.6 以前的版本,肯定有这个问题