请问,在一个SQL Server 查询中能同时使用多个游标么? 像下面这样: declare YX_cursor cursor scroll fo

declareYX_cursorcursorscrollforselect*fromdbo.GetFrom_YX611orderbydbo.GetFrom_YX611.#... declare YX_cursor cursor scroll
for select * from dbo.GetFrom_YX611 order by dbo.GetFrom_YX611.#DEPTH

declare CJ_cursor cursor scroll
for select * from dbo.GetFrom_CJ611 order by dbo.GetFrom_CJ611.#DEPTH

open CJ_cursor
open YX_cursor

fetch next from CJ_cursor
into @CJ_depth,@sp,@gr,@cal,@ac,@den,@lld,@lls,@cnl

fetch next from YX_cursor
into @num,@YX_depth,@yanxing

close CJ_cursor
close YX_cursor

deallocate CJ_cursor
deallocate YX_cursor

go
展开
 我来答
昔俊能Nq
2011-04-05 · TA获得超过937个赞
知道小有建树答主
回答量:518
采纳率:0%
帮助的人:620万
展开全部
可以的,SQl中游标也是对记录集进行逐行获取,相当于循环语句
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Mrrr果酱
2022-10-10
知道答主
回答量:26
采纳率:0%
帮助的人:1.1万
展开全部
感谢灵感来源,在游标里定义两个游标变量,可以实现对deleted表和inserted表的同时同步调用。
代码如下:
begin
declare @class_noidA char(4), @class_noidB char(4),@spnoidA char(8),@spnoidB char(8)
declare class_cursorA cursor local forward_only
for select class_no,spno from deleted
declare class_cursorB cursor local forward_only
for select class_no,spno from inserted
open class_cursorA
open class_cursorB
fetch next from class_cursorA into @class_noidA,@spnoidA
fetch next from class_cursorB into @class_noidB,@spnoidB
while(@@FETCH_STATUS=0)
begin
使用inserted表里的数据和deleted表里的数据实现操作。
fetch next from class_cursorA into @class_noidA,@spnoidA
fetch next from class_cursorB into @class_noidB,@spnoidB
end
close class_cursorA
close class_cursorB
deallocate class_cursorA
deallocate class_cursorB
end
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
摆渡浮桥
2011-04-05 · TA获得超过3629个赞
知道大有可为答主
回答量:1610
采纳率:100%
帮助的人:2224万
展开全部
可以。
追问
不好意思,我刚开始用百度知道,没有金币能给,能再问个问题么,
@@fetch_status 的值在多个游标的状况下是怎么确定的呢?
追答
@@fetch_status返回上一条fetch语句的状态。
例如:
fetch next from CJ_cursor
into @CJ_depth,@sp,@gr,@cal,@ac,@den,@lld,@lls,@cnl
-- 这时 @@fetch_status 是 fetch next from CJ_cursor的状态
fetch next from YX_cursor
into @num,@YX_depth,@yanxing
-- 这时 @@fetch_status 是 fetch next from YX_cursor的状态
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式