2016 - 2024

感恩一路有你

sql数据库触发器怎么写 Oracle触发器用法实例详解?

浏览量:2469 时间:2021-03-11 11:30:25 作者:admin

Oracle触发器用法实例详解?

触发器和sequence 的使用建表:create table prd (id number not null primary key, name varchar2(20) , spec varchar2(30) )建sequencecreate sequence prd_seqincrement by 1start with 1nomaxvaluenocyclenocache建触发器create or replace trigger prd_trig before insert on prd for each rowwhen(new.id is null) beginselect mgssfcs.prd_seq.nextval into :new.id from dual select sysdate into :new.datetime from dual --不能直接用update或insert语句输入 end作用:对某一个表或数据库进行操作时,触发器内的代码开始执行:可以为本表自动输入其它字段的值,也可以对别的表进行新增,删除,更新等各种操作。

sql数据库触发器怎么写 oracle数据库怎么创建触发器 数据库触发器创建

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。