I was going through the different type of Triggers from here
This article is sayiong triggers are classified into two main types:-
-
After Triggers // This fires after row is inserted/updated/deleted
-
Instead Of Triggers // This fires before the row is inserted/updated/deleted
In which category does the following trigger fit?
create trigger TriggerName
on TableName For Insert
As
From here: