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

oracle 触发器实现主键自增

时间:2014-05-15 14:00:51      阅读:403      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   c   

bubuko.com,布布扣
drop table book;   
--创建表      
create table book(       
   bookId varchar2(4) primary key,   
   name varchar2(20)         
);   
--创建序列      
create sequence book_seq start with 1 increment by 1;    
  
--创建触发器      
create or replace trigger book_trigger       
before insert on book       
for each row       
begin       
select book_seq.nextval into :new.bookId from dual;      
end ;   
--添加数据      
insert into book(name)  values (cc);    
insert into book(name)  values (dd);   
  
commit;  
 

查询数据:select * from book; 

查询
select * from user_objects ubs where ubs.OBJECT_TYPE=‘SEQUENCE‘; 
bubuko.com,布布扣

 

oracle 触发器实现主键自增,布布扣,bubuko.com

oracle 触发器实现主键自增

标签:style   blog   class   code   java   c   

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

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