有关ORACLE10G行触发器修改本行数据提问,请高手帮忙
我想建一个表的行触发器,当表中的数据修改后,触发器实现修改本行的一个字段的标志位,但是执行时不行,请问一下,该如何实现?
------解决方案--------------------create or replace trigger ouxuan 
   before update on t_glrecordbdg 
   --referencing NEW AS n 
   for each row 
 declare 
   -- local variables here 
 begin 
     :new.标志位:= 标志位; 
 end ouxuan;