触发器没有效果
create or replace trigger securityemp before insert on emp begin if to_char(sysdate,'day') in ('星期六','星期天') or to_number(to_char(sysdate,'hh24')) not between 9 and 18 then --禁止insert新员工 raise_application_error(-20001,'禁止在非工作时间插入新员工'); end if; end; 为什么我用PL/SQL工具编写触发器后,插入语句没有任何效果呢?