Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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"?

share|improve this question

1 Answer

up vote 0 down vote accepted

From the CREATE TRIGGER docs:

trigger_time is the trigger action time. It can be BEFORE or AFTER to indicate that the trigger activates before or after each row to be modified.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.