I know MySQL triggers are DML only (update, delete, insert) triggers. In SQL Server, triggers can be done “After” or “Instead of” in relation to the statement it is performed on. SQL Server doesn’t support “Before” triggers. What kind of triggers are MySQL DML triggers considered as: “After”, “Instead of”, or “Before”?
I know MySQL triggers are DML only (update, delete, insert) triggers. In SQL Server,
Share
From the
CREATE TRIGGERdocs: