Home »
PL/SQL MCQs
What does REFERENCING OLD AS o NEW AS n clause do in trigger?
107. What does REFERENCING OLD AS o NEW AS n clause do in trigger?
- This clause is used to refer the old values for different DML statements.
- This clause is used to refer the new values for different DML statements.
- Both A. and B.
- None of the above
Answer: C) Both A. and B.
Explanation:
REFERENCING OLD AS o NEW AS n clause is used to refer the old and new values for different DML statements.