Mysql触发器插入和删除合二为一?
我需要创建一个插入和删除触发器,两者都会做同样的事情。
我可以在一个触发器中创建它吗?
或者我需要两个单独的吗?
我环顾四周,似乎都有一个用于删除,另一个用于插入。
I need to create an insert and delete trigger, both will do the same thing.
Can I create this in one trigger?
Or do I need two separate ones?
I've had a look around and all seem to have one for delete and another for insert.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MySql 不允许同一触发器上有多个事件。
一种选择是将代码放入过程中,并让每个触发器调用相同的过程 - 根据需要将旧/新行的尽可能多的信息传递给过程。
MySql does not allow for multiple events on the same trigger.
One option is to put your code in a procedure, and have each trigger call the same procedure - pass as much info of the old/new row to the proc as required.