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
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
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。