フィールドがnullかどうかを確認するトリガーがあります。
create or replace trigger trig1
after insert on table_1
for each row
begin
if ((select table2.column2 from table2 where table2.id= :new.id) isnull) then
update table2 set table2.column2 = :new.column1 where table2.id = :new.id;
end if;
end trig1;
.
run;
トリガーがコンパイルエラーで作成されるというエラーが発生します。何が問題なのかわかりません。Oracle SQL *Plus10.2.0を使用しています