MySQL 使用 ON UPDATE CURRENT_TIMESTAMP 自动更新 timestamp (转)

时间:2022-12-23 08:20:47

原文地址: https://blog.csdn.net/heatdeath/article/details/79833492

 `create_time` timestamp not null default current_timestamp comment '创建时间',

 `update_time` timestamp not null default current_timestamp on update current_timestamp comment '修改时间',

当执行update操作是,并且字段有ON UPDATE CURRENT_TIMESTAMP属性。则字段无论值有没有变化,它的值也会跟着更新为当前UPDATE操作时的时间。


参考资料:

1、timestamp的两个属性:CURRENT_TIMESTAMP 和ON UPDATE CURRENT_TIMESTAMP
https://blog.csdn.net/aitcax/article/details/41849591