触发器如下
create or replace trigger add_theme_user
  after insert on FACE_THEME_DOWN_LOG  
  for each row
declare
  -- local variables here
begin
  if :new.vc2action = 'USER_VIEW_WAPINDEX' then
    insert into face_theme_user(userid,version,vc2modelid,cdate) values(:new.vc2userid,:new.vc2clientversion,:new.vc2modelid,sysdate);
  end if;
  exception when others then
    null;
end add_theme_user;例如
face_theme_user表中userid='3333'对应的vc2modeli字段为null
但是FACE_THEME_DOWN_LOG表中userid='3333'对应的vc2modeli字段不为null