I have two tables main
and hist
. I want to copy a row from main
table whenever its datetime column is modified to hist
and reset the modified colums in the main
to null
except one column. However I am getting mutating trigger error. Please help.
Below are the two triggers,
CREATE OR REPLACE TRIGGER INS_HIS
AFTER UPDATE OF datetime ON main
FOR EACH ROW
INSERT INTO HIST
VALUES (Col2 = :new.col2, Col3= :new.Col3)
END;
CREATE OR REPLACE TRIGGER UPD_NUL_MAIN
AFTER INSERT ON HIST
FOR EACH ROW
UPDATE Main
SET (Col2 = NULL
Col3= NULL)
WHERE HIST.datetime = main.datetime;
END
Assuming you want to change only the row in main that triggered the update, you can get rid of the second trigger altogether if you change your first trigger to a BEFORE UPDATE one and set col2 and col3 there:
BTW: your trigger syntax is wrong - you cannot use (col2 = :new.col2).