PLSQL :NEW and :OLD
You normally use the terms in a trigger using :old to reference the old value and :new to reference the new value. Here is an example from the Oracle documentation linked to above CREATE OR REPLACE TRIGGER Print_salary_changes BEFORE DELETE OR INSERT OR UPDATE ON Emp_tab FOR EACH ROW WHEN (new.Empno > 0) DECLARE sal_diff … Read more