create or replace trigger beforeInsert
instead of insert on Friends
for each row
begin
dbms_output.put_line('This operation is prohibited');
end beforeInsert;
我正在尝试创建一个触发器,该触发器会显示消息“禁止此操作”而不是插入到 table 中,但会出现编译错误。Oracle IDE 要求我指定之前或之后。怎么了?我知道它instead of
用于视图,但是如何禁止使用触发器插入表?