• 游标


    游标实例

    
    
    DECLARE @LegalUnitID as  varchar(100),
             @ViewID as  varchar(100)
      declare my_cursor cursor for 
      select LegalUnitID,ViewID from T_TEMPLATE_VIEW group by LegalUnitID,ViewID  
       --打开游标--
        open my_cursor
        --开始循环游标变量--
        fetch next from my_cursor into @LegalUnitID ,@ViewID
        while @@FETCH_STATUS = 0    --返回被 FETCH语句执行的最后游标的状态--
            begin
    
            --处理
            print '@LegalUnitID:'+@LegalUnitID+';@ViewID:'+@ViewID
          
    
           fetch next from my_cursor into @LegalUnitID,@ViewID   --转到下一个游标,没有会死循环
           end    
        close my_cursor  --关闭游标
        deallocate my_cursor   --释放游标
    
  • 相关阅读:
    CF Round 594
    [转载]CSP-J/S 第一轮知识点选讲
    10.17 模拟赛
    10.16 模拟赛
    10.15模拟赛
    10.14模拟赛
    10.12 模拟赛
    Peaks Gym 100365H
    手写Bitset优化
    Sums gym100753M
  • 原文地址:https://www.cnblogs.com/imtudou/p/11251916.html
Copyright © 2020-2023  润新知