运维系列&MYSQL8(亲测有效):【MySQL-技术】MySQL数据库自动添加创建时间、更新时间(超详细版)
MySQL数据库自动添加创建时间、更新时间(超详细版)
【Mysql-技术】Mysql数据库自动添加创建时间、更新时间1、Mysql5.7及以上版本方法create table test(id integer not null auto_increment primary key,name varchar(20) not null ,created timestamp not null default CURRENT_TIMESTAMP,updated
一、MySQL5.7及以上版本(也适用于MySQL8.0+)方法
下列给出了三种不同时期修改表的SQL,便于各位看官快捷开发(CV大法)
1、新建表
自动获取创建时间:timestamp not null default CURRENT_TIMESTAMP
自动获取更新时间:timestamp not null default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP
create table test(
id integer not null auto_increment primary