oracle 添加自增索引

1.添加一个Sequence,此处为ID_SEQUENCE。

oracle 添加自增索引

2.添加对应表,并设置主键

3.设置触发器

create or replace trigger sys.id_add
before insert on SWACK.NUSER
for each row
-- WHEN (new.id is null)
-- local variables here
begin
select SWACK.ID_SEQUENCE.NEXTVAL into :new.id from dual;
end id_add;

上一篇:MySql多条SQL语句的批量处理


下一篇:jQuery.proxy()的用法