其他分享
首页 > 其他分享> > 实现建表时对应字段(修改时间)自动生成当时系统时间

实现建表时对应字段(修改时间)自动生成当时系统时间

作者:互联网

在建表时:

`create_time` timestamp not null default current_timestamp comment'创建时间',--将系统当前时间设为默认值
`update_tiem` timestamp not null default current_timestamp on update current_timestamp comment'修改时间',   --将系统当前时间设为默认值,同时更新时替换为更新时的系统时间

 

将系统当前时间设为默认值

标签:comment,建表时,timestamp,系统,生成,current,时间,默认值
来源: https://www.cnblogs.com/shouyaya/p/13090371.html