0 votes
in PL/SQL by
Is It Possible To Combine Several Triggering Events Into One Trigger?

1 Answer

0 votes
by

Yes, it is possible to combine various triggering events and create one trigger. Special conditional predicates such as INSERTING, UPDATING, and DELETING are used within the trigger body to represent the triggering events, as shown in the following code snippet:

Related questions

0 votes
asked Mar 13, 2021 in PL/SQL by rajeshsharma
0 votes
asked Mar 15, 2021 in PL/SQL by Robindeniel
...