-- 创建表
drop table test;
create table test(id number(10), name varchar2(10));
-- 创建对列
drop sequence seq_id;
create sequence seq_id minvalue 1 nomaxvalue start with 1 increment by 1 nocycle nocache;
/*
minvalue 1 最小值
nomaxvalue 不设置最大值(由机器决定),或根据表字段的值范围设置 maxvalue
start with 1 从1开始计数,数值可变
increment by 1 每次加1,数值可变
nocycle 一直累加,不循环
nocache 不建缓冲区,如果建立cache那么系统将自动读取cache值个seq,这样会加快运行速度;
如果当机或oracle死了,那么下次读取的seq值将不连贯*/
-- sys 登陆授权
grant create trigger to scott;
-- 创建触发器, 注意创建触发器 “end;” 后面必须加一个回车和“/”,才可以执行;
create or replace trigger test_id_increment
before insert on test
for each row
begin
select seq_id.nextval into:new.id from dual;
end;
/
-- 测试
select * from test;
insert into test(name) values('张三');
insert into test values(null, '张三');
select * from test;