sqlserver 游标的使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqlserver 游标的使用相关的知识,希望对你有一定的参考价值。

declare @temp_temp uniqueidentifier--临时变量    
DECLARE aaa CURSOR for select Id from A
-------------------打开游标
open aaa
--先查询一次再循环,防止有多个游标时@@FETCH_STATUS=-1不能进入下个游标循环的情况
fetch next from aaa into @temp_temp
-------------------循环取数据
while @@FETCH_STATUS=0
begin
print @temp_temp
fetch next from aaa into @temp_temp

end
----------------------------------- 关闭游标    
Close aaa    
----------------------------------- 删除游标    
Deallocate aaa

  

游标的嵌套

declare @temp_temp uniqueidentifier--临时变量    
DECLARE aaa CURSOR for select Id from A
-------------------打开游标
open aaa
--先查询一次再循环,防止有多个游标时@@FETCH_STATUS=-1不能进入下个游标循环的情况
fetch next from aaa into @temp_temp
-------------------循环取数据
while @@FETCH_STATUS=0
begin
print @temp_temp
	--===========================游标嵌套 
	DECLARE bbb CURSOR for select Id from B
	-------------------打开游标
	open bbb
	--先查询一次再循环,防止有多个游标时@@FETCH_STATUS=-1不能进入下个游标循环的情况
	fetch next from bbb into @temp_temp
	-------------------循环取数据
	while @@FETCH_STATUS=0
	begin
	print @temp_temp
	fetch next from bbb into @temp_temp

	end
	----------------------------------- 关闭游标    
	Close bbb    
	----------------------------------- 删除游标    
	Deallocate bbb
	--===========================游标嵌套
fetch next from aaa into @temp_temp

end
----------------------------------- 关闭游标    
Close aaa    
----------------------------------- 删除游标    
Deallocate aaa

  

以上是关于sqlserver 游标的使用的主要内容,如果未能解决你的问题,请参考以下文章

SqlServer之游标深入

sqlserver中怎样使用游标for循环

sqlserver中怎样使用游标for循环

sqlserver 游标的使用

sqlserver 游标的使用

使用带有 JDBC 和 SQLServer 的数据库 API 游标来选择批处理结果