mysql触发器可以用来阻止插入吗?
我有一个邮件队列表和一个电子邮件黑名单表。在整个代码中,在无数(字面上,我数过)位置对邮件队列表进行了插入。我的任务是阻止向黑名单上的人发送电子邮件。如果地址位于黑名单表中,我可以在邮件队列表上创建拒绝插入的触发器吗?
有可能有更好的方法吗?
I've got a mail queue table, and a email black list table. Inserts to the mail queue table are made in a zillion (literally, I counted) places throughout the code. I've been tasked with blocking emails to people on the black list. Can I make a trigger on the mail queue table that rejects inserts if the address is in the black list table?
Is there possibly a better way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自书籍“高性能 MySQL 第二版”:
From the Book 'High Performance MySQL Second Edition':