MySQL 设置默认时间

MySQL  8.0.12

1. 插入记录,列值为当前时间,修改时时间不变。

last_update timestamp not null default now() comment '最后更新时间',

2. 插入和修改时均为当前时间。

last_update timestamp not null default now() on update now() comment '最后更新时间',

以上的 now() 均可以替换为 current_timestamp

posted @ 2019-04-20 19:41  Ainsliaea  阅读(16408)  评论(0编辑  收藏  举报