SQL Server 中的游标
我正在读一本有关存储过程的书,他们正在解释其中的游标,但我没有碰巧找到游标的适当用途或必须使用游标的规则场景。
I am reading a book for stored procedures and they are explaining cursors inside it but i didn't happen to find a decent use for Cursors or a rule scenario where Cursor usage is a must.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您想要循环选择语句的结果集以对每一行执行某些操作时,可以使用游标。它就像任何编程语言中的 foreach 。
You can use cursors when you want to loop on a result set from a select statement to do something with each row. It is like the foreach in any programming language.