MySQL、Oracle的时间类型字段自动更新:insert插入、update更新时,自动更新时间戳。设置自增主键id,oracle创建自增id序列和触发器
drop table if exists demo;
create table demo
(
id bigint auto_increment primary key comment '自增id',
name varchar(8) comment '姓名',
datetime1 datetime default now() comment 'insert 时,更新时间',
datetime2 datetime on update now() comment ' update 时,更新时间',
datetime3 datetime default now() on update now() comment 'insert/update 时,更新时间',
timestamp1 timestamp default now() comment 'insert 时,更新时间',
timestamp2 timestamp on update now() comment ' update 时,更新时间',
timestamp3 timestamp default now() on update now() comment 'insert/update 时,更新时间'
) comment = '测试自动更新时间';