mysql 追加update_time、create_time、id三字段

来源:互联网 发布:淘宝零食店货源哪里来 编辑:程序博客网 时间:2024/05/18 00:38

紧当数据创建时设置值

alter table tbl_books modify create_time datetime  not null default current_timestamp

当数据被修改时该字段自动更新

alter table tableName add update_time datetime not null default current_timestamp on update current_timestamp

修改主键自动增加

alter table tbl_books modify id bigint auto_increment
原创粉丝点击