码迷,mamicode.com
首页 > 数据库 > 详细

oracle设置主键自增

时间:2018-07-14 13:09:36      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:begin   通过   commit   nbsp   nextval   查看   seq   cache   expand   

oracle中没有自增字段,可通过序列+触发器间接实现,cmd中sqlplus登录,直接运行即可。一般要经过一下几步:

1建立数据表

技术分享图片
create table Test_Increase(
           userid number(10) primary key,  /*主键,自动增加*/
           username varchar2(20)
           );

2创建自动增长序列

 CREATE SEQUENCE TestIncrease_Sequence
 INCREMENT BY 1   -- 每次加几个  
     START WITH 1     -- 从1开始计数  
     NOMAXVALUE       -- 不设置最大值  
     NOCYCLE          -- 一直累加,不循环  
     CACHE 10; 

3创建触发器

CREATE TRIGGER Test_Increase BEFORE
insert ON  Test_Increase FOR EACH ROW
begin
select TestIncrease_Sequence.nextval into:New.userid from dual;

end;

4 提交

commit;

5 测试

反复执行如下语句:

insert into Test_Increase(Username) values(‘test‘)

6 查看插入结果:

userid username

 1       test
 2       test
 3       test
 4       test
 5       test
 6       test
 7       test
 8       test
 9       test

 

转:http://blog.163.com/xuxiaoqianhz@126/blog/static/165190577201082910371842/

oracle设置主键自增

标签:begin   通过   commit   nbsp   nextval   查看   seq   cache   expand   

原文地址:https://www.cnblogs.com/wang-jx/p/9308971.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!