I would like to know if it's possible in MYSQL to "update a trigger" (drop and recreate), after an alter table command? If yes, how can I do this?
Asked
Active
Viewed 486 times
1 Answers
1
Nope, not automatically. You'll just have to do it manually. Unfortunately, the information_schema.TRIGGERS table also doesn't have any creation/alteration datetime, so you can't even write a SQL script that identifies which triggers you might need to recreate.

Roland Bouman
- 31,125
- 6
- 66
- 67