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

原文地址: 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

上一篇:动态拼接 sql的时候 里面 如果有变量的话 按上面的方式进行处理


下一篇:Hibernate中的对象状态,及自动更新原因,Hibernate set对象后不调用update却自动更新