Oracle数据库一些操作

前端之家收集整理的这篇文章主要介绍了Oracle数据库一些操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
创建sequence序列
create sequence TELLER . LOGIN_HISTORY_SEQ
minvalue 1
nomaxvalue
start with 1
increment by 1
cache 20
nocycle;
创建插入数据的触发器
create or replace trigger "trigger1"
before insert on user_login_history
referencing old as old new as new for each row
declare
begin
select TELLER . LOGIN_HISTORY_SEQ .nextval into:new. login_number from dual ;
end "trigger1" ;

猜你在找的Oracle相关文章