oracle 触发器实现主键自增

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‘; 

 

oracle 触发器实现主键自增,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。