关于“FOR EACH ROW”的问题在 SQL 触发器中
如果我使用触发器更新一行,并且它仅从新行读取,那么触发器中是否还需要 FOR EACH ROW ?
If I'm using a trigger to update one row, and it's only reading from the NEW row, is FOR EACH ROW even needed in the trigger?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您永远不会使用更新语句更新超过 1 行,则触发器中的 for every row 声明是可选的。
If you are never going to update more than 1 row with an update statement, then the for each row declaration in your trigger is optional.