如何拒绝删除前触发器中的删除语句?
如何拒绝删除触发器中的删除语句(mysql)?
示例用例:我有一条具有指定 id 的记录,我希望该记录不会被删除。
How to reject delete statement in before delete trigger (mysql) ?
Sample use case : I have a record with specified id that I want to will not be deleted.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建一个使用引用 ID 列的外键约束的表(前提是该列是表的主键)。在引用 ID = 0 的“子”表中插入一行,并从该表中删除用户的所有更新/删除权限。
现在,如果有人尝试删除“父”表中 ID = 0 的行,则由于另一个表中存在子行,该行将失败。
You could create a table that uses a foreign key constrait referencing your ID column (provided that is the primary key of your table). The insert a row into that "child" table that references ID = 0 and remove all update/delete privileges for your user from that table.
Now if someone tries to delete the row with ID = 0 in the "parent" table that will fail due to an existing child row in the other table.
看这里,同样的事情,但带有插入触发: How to abort INSERT MySql 触发器中的操作?
Look here, same thing but with an insert-trigger: How to abort INSERT operation in MySql trigger?