标签:lte 一个 添加 current 批量更新 时间 更新 批量 创建
# 添加创建 更新 时间字段 ALTER TABLE `表名` ADD COLUMN `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP AFTER `最后一个列名`, ADD COLUMN `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP AFTER `create_time`;
执行后, 会批量更新 现有数据全部自动更新为当前时间, 新插入的数据时候自动更新插入的时间.
Mysql 添加 create_time, update_time 创建时间 更新时间 自动更新
标签:lte 一个 添加 current 批量更新 时间 更新 批量 创建
原文地址:https://www.cnblogs.com/levia/p/11367993.html