MySQL 设置默认时间
MySQL 8.0.12
1. 插入记录,列值为当前时间,修改时时间不变。
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。last_update timestamp not null default now() comment '最后更新时间',
2. 插入和修改时均为当前时间。
last_update timestamp not null default now() on update now() comment '最后更新时间',
以上的 now() 均可以替换为 current_timestamp

更多精彩