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

Oracle中用序列和触发器实现ID自增

时间:2019-01-29 20:28:40      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:into   weight   begin   code   自定义   uid   creat   ble   art   

在设计数据库的时候,Oracle中没有类似SQL Server中系统自动分配ID作为主键的功能,这时Oracle可以通过“序列”和“触发器”来实现ID自动增加的功能。

1.创建序列Sequence

create sequence seq_uid
  increment by 1   
  start with 1    
  nomaxvalue    
  nocycle   
  cache 10 ;

其中:"seq_uid"表示自定义的序列名称

   "start with 1"表示序列值从1开始;

   "increment by 1"表示序列每次增加的值为1

序列的使用方法:

select seq_uid.nextval ID from dual

这样就得到了序列的下一个值,将这个语句放在触发器中,就可以实现类似SQL Server中ID自增的功能。

 
2.创建触发器Trigger
create trigger tri_uid before insert on [tablename] for each row when (new.[columnname] is null)
begin
    select seq_uid.nextval into:new.[columnname] from dual;
end;

其中:"tri_uid"表示自定义的触发器名称;

   "seq_uid"表示要使用的序列名称

   "[columnname]"表示要实现自增的列;

   "[tablename]"表示要实现自增的列所在的数据表

Oracle中用序列和触发器实现ID自增

标签:into   weight   begin   code   自定义   uid   creat   ble   art   

原文地址:https://www.cnblogs.com/imdeveloper/p/10334215.html

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