zoukankan      html  css  js  c++  java
  • 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
    

      

  • 相关阅读:
    问题堆栈区39+40
    ListView优化分页优化
    AsyncTask理解- Day36or37
    Activity是如何挂载Pargment的Day35
    BroadcastReceiver和Intetnt的理解 Day34
    深入理解自定义ListView
    手势识别=读取手机联系人=ContentResolver-Day3
    Android本地JUnit Text
    Java——(一)一切都是对象
    SciTE: 中文字符支持问题
  • 原文地址:https://www.cnblogs.com/shensigzs/p/5168944.html
Copyright © 2011-2022 走看看