0 votes
in PL/SQL by
Is It Possible To Pass Parameters To Triggers?

1 Answer

0 votes
by
No, it is not possible to pass parameters to triggers. However, triggers fired by INSERT and UPDATE statements can reference new data by using the mew prefix. In addition, the triggers fired in response to UPDATE and DELETE statements can reference old, modified, or deleted data using the :old prefix.
...