使用 OUTER APPLY 更新查询
我正在使用游标循环遍历自连接表。
我用来声明游标的查询工作正常 - 至于返回正确的行。
但是当我尝试更新时,我得到:
一个或多个 FOR UPDATE 列已调整为查询中表的第一个实例。
谢谢。
编辑:
我设法使用基于集合的 sql 解决了这个问题。
快得多...
我不是循环游标的结果集然后更新,而是在查询正文中更新。
i'm using cursor to loop through a self join table.
the query that i use to declare the cursor works fine - as for to return the correct row.
but when i try to update, i'm getting:
One or more FOR UPDATE columns have been adjusted to the first instance of their table in the query.
thank you.
EDIT:
i managed to solve it by using Set-Based sql.
much quicker...
instead of looping the result set of the cursor and then update, i'm updating in the query body.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
上面已经回答了。
我设法通过使用基于集合的sql来解决它。
answered above.
i managed to solve it by using Set-Based sql.