0
Hello everyone I want to ask us what is the deference between trigger with instead of and trigger with for and finally thanks
2 RĂ©ponses
+ 1
An Trigger with Instead is a trigger that allows you to skip an INSERT, DELETE, or UPDATE statement to a table or a view and execute other statements defined in the trigger instead.
An Trigger with For is fired only when all operations (INSERT, UPDATE or DELETE) specified in the triggering SQL statement have executed successfully
+ 1
Thank you bro