仅当 MySQL 上不存在触发器时才创建触发器

发布于 2024-10-30 07:47:01 字数 192 浏览 1 评论 0原文

我正在编写一个脚本来在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

煞人兵器 2024-11-06 07:47:01

使用 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.

will creating the trigger overwrite any trigger with the same name?

No, it will fail with an error, actually.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文