You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In triggers the following conditional predicates are available: insert, updating, deleting.
Logging the type of trigger event can require a bunch of repetitive code. Have a function that looks like (pseudo code):
l_return := case
when inserting then 'inserting'
when updating then 'updating'
when deleting then 'deleting'
else null; -- This will occur when not in a "each row" trigger
The text was updated successfully, but these errors were encountered:
In triggers the following conditional predicates are available:
insert, updating, deleting
.Logging the type of trigger event can require a bunch of repetitive code. Have a function that looks like (pseudo code):
The text was updated successfully, but these errors were encountered: