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

oracle 自增ID

时间:2015-12-07 15:59:22      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

drop sequence SEQ_sys_dictionary;
create sequence SEQ_sys_dictionary INCREMENT BY 1 START WITH 1;

create or replace trigger sys_dictionary_TRIGGER       
before insert on sys_dictionary       
for each row       
begin       
select SEQ_sys_dictionary.nextval into :new.id from dual;      
end ; 
commit;

 

oracle 自增ID

标签:

原文地址:http://www.cnblogs.com/xsmhero/p/5026161.html

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