仅当 MySQL 上不存在触发器时才创建触发器
我正在编写一个脚本来在 MySQL 中的表上创建触发器,但该触发器可能已经存在。
这是我需要担心的事情,还是创建触发器会覆盖任何同名的触发器?
我考虑在 CREATE TRIGGER...
之前使用 DROP TRIGGER IF EXISTS
语句。这会带来任何性能损失或其他缺点吗?
I'm writing a script to create a trigger on a table in MySQL, but there's a possibility that the trigger might already exist.
Is this something I need to worry about, or will creating the trigger overwrite any trigger with the same name?
I considered using a DROP TRIGGER IF EXISTS
statement before the CREATE TRIGGER...
. Will that have any performance penalties or other downsides?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 DROP TRIGGER IF EXISTS 正是实现此目的的方法。唯一的缺点是,如果您不了解触发器,并且它具有完全相同的名称(如果遵循命名约定,则可能如此),那么您实际上会丢失其背后的定义和功能。
不,实际上它会因错误而失败。
Using DROP TRIGGER IF EXISTS is exactly the way to do it. The only downside is if you did not know about a trigger, and it has exactly the same name (possible if following naming conventions), then you would effectively lose the definition and functionality behind it.
No, it will fail with an error, actually.