日期:2014-05-16 浏览次数:20387 次
/*
触发器应用场景一: 根据业务逻辑限制某些操作
限制非工作时间向数据库插入数据
非工作时间: 星期六,星期日 <9:00 >18:00
select to_char(sysdate,'day') from dual;
select to_number(to_char(sysdate,'hh24')) from dual
*/
create or replace trigger securityEmp
before insert on emp
declare
begin
if to_char(sysdate,'day') in ('星期六','星期日')
or to_number(to_char(sysdate,'hh24')) not between 9 and 18 then
raise_application_error(-20001,'不能在非工作时间插入数据');
end if;
end;
/
/*
触发器应用场景二: 校验数据
涨工资后的值不能小于涨之前的值
update emp set sal = sal -100 where empno=1234;
触发器应用场景三: 数据的备份和同步
*/
create or replace trigger checkRaiseSalary
before update on emp
for each row
declare
begin
if :new.sal < :old.sal then
raise_application_error(-20002,'涨工资后的值不能比涨之前的少!涨前:' || :old.sal || ' 涨后:' ||:new.sal);
end if;
end;
/