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