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

猜你喜欢

转载自www.cnblogs.com/ainsliaea/p/10742364.html