本文主要是介绍ORACLE设置表ID自增,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、创建表
create table note(
id number(20) NOT NULL primary key,/*主键,自动增加*/ name varchar2(20));
- 1
- 2
2、创建自动增长序列
Create Sequence addAuto_Sequence Increment by 1 -- 每次加几个 start with 1 -- 从1开始计数 nomaxvalue -- 不设置最大值,设置最大值:maxvalue 9999 nocycle -- 一直累加,不循环 cache 10;
- 1
- 2
- 3
- 4
- 5
- 6
3、创建触发器
Create trigger addAuto before insert on note(表名) for each row /*对每一行都检测是否触发*/beginselect addAuto_Sequence.nextval into:New.id from dual;end;
- 1
- 2
- 3
- 4
- 5
4、提交 commit;
5、测试 insert into note(name) values(‘lisi’);
这篇关于ORACLE设置表ID自增的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!