oracle设置id自动增长

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle设置id自动增长相关的知识,希望对你有一定的参考价值。

1、创建增长序列

create sequence 序列名
minvalue 1
maxvalue 99999999999999999999
start with 1
increment by 1
nocache

2、创建触发器(关联表字段和序列)

create or replace trigger 触发器名
before insert on 表名
for each row 
    begin 
        select 序列名.nextval into:new.表字段 from dual;
    end;

 

以上是关于oracle设置id自动增长的主要内容,如果未能解决你的问题,请参考以下文章

oracle设置id自动增长

oracle自增长

oracle 表空间自动增长 如何设置

mysql的主键是自动增长的,oracle的主键是起啥作用的

oracle设置自动增长序列

pgsql如何让表id自动增长