Oracle创建自增ID
Posted 海龙的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle创建自增ID相关的知识,希望对你有一定的参考价值。
先创建序列sequence
create sequence S_User
minvalue 1
nomaxvalue -- 或 maxvalue 999
start with 1
increment by 1
cache 20; -- 或 nocache
参考:
oracle 序列中cache 有什么用途
然后创建触发器
create or replace trigger trg_user before insert on T_USER for each row
begin
select itsmp.S_User.nextval into :new.UserID from dual;
end;
以上是关于Oracle创建自增ID的主要内容,如果未能解决你的问题,请参考以下文章