zoukankan      html  css  js  c++  java
  • SQL Cursor 基本用法

    Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 table1结构如下
    id    int
    name  varchar(50)
    
    declare @id int
    declare @name varchar(50)
    declare cursor1 cursor for         --定义游标cursor1
    select * from table1               --使用游标的对象(跟据需要填入select文)
    open cursor1                       --打开游标
    
    fetch next from cursor1 into @id,@name  --将游标向下移1行,获取的数据放入之前定义的变量@id,@name中
    
    while @@fetch_status=0           --判断是否成功获取数据
    begin
    update table1 set name=name+'1'
    where id=@id                           --进行相应处理(跟据需要填入SQL文)
    
    fetch next from cursor1 into @id,@name  --将游标向下移1行
    end
    
    close cursor1                   --关闭游标
    deallocate cursor1

    游标一般格式:
    DECLARE 游标名称 CURSOR FOR SELECT 字段1,字段2,字段3,... FROM 表名 WHERE ...
    OPEN 游标名称
    FETCH NEXT FROM 游标名称 INTO 变量名1,变量名2,变量名3,...
    WHILE @@FETCH_STATUS=0
            BEGIN
                      SQL语句执行过程... ...
                      FETCH NEXT FROM 游标名称 INTO 变量名1,变量名2,变量名3,...
            END
    CLOSE 游标名称
    DEALLOCATE 游标名称 (删除游标)

    代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->例子:
    /*
    功能:数据库表格tbl_users数据
    deptid userid username
             100      a
         101      b
         102      c
    要求用一个sql语句输出下面结果
    deptid username
           ab
           c
    [要求用游标实现设计: OK_008
    时间: 2006-05
    备注:无
    */
    create table #Temp1(deptid int,userid int,username varchar(20)) --待测试的数据表
    create table #Temp2(deptid int,username varchar(20))                --结果表
    --先把一些待测试的数据插入到待测试表#Temp1中
    insert into #Temp1
    select 1,100,'a' union all
    select 1,101,'b' union all
    select 1,131,'d' union all
    select 1,201,'f' union all
    select 2,302,'c' union all 
    select 2,202,'a' union all
    select 2,221,'e' union all
    select 3,102,'y' union all 
    select 3,302,'e' union all
    select 3,121,'t' 
    --
    declare @deptid int,@username varchar(20)
    --定义游标
    declare Select_cursor cursor for
            select deptid,username from #Temp1
    open Select_cursor
    fetch next from Select_cursor into @deptid,@username    --提取操作的列数据放到局部变量中
    while @@fetch_status=0      --返回被 FETCH 语句执行的最后游标的状态
    /*
    @@FETCH_STATUS =0          FETCH 语句成功
    @@FETCH_STATUS =-1 FETCH 语句失败或此行不在结果集中
    @@FETCH_STATUS =-2 被提取的行不存在
    */
            begin
                      --当表#Temp2列deptid存在相同的数据时,就直接在列username上追加@username值
                      if(exists(select * from #Temp2 where deptid=@deptid )) 
                              update #Temp2 set username=username +@username where deptid=@deptid
                      else 
                      --插入新数据
                              insert into #Temp2 select @deptid,@username
                      fetch next from Select_cursor into @deptid,@username
            end
    close Select_cursor      
    deallocate Select_cursor
    select * from #Temp2 --测试结果
    Drop table #Temp1,#Temp2
  • 相关阅读:
    [Hadoop in China 2011] 海狗不是狗 探秘支付宝准实时搜索查询
    [Hadoop in China 2011] 邵铮:揭秘FaceBook Puma演变及发展
    MongoDB学习笔记(一) MongoDB介绍及安装
    [Hadoop in China 2011] 人人网:基于Hadoop的SNS统计和聚类推荐
    运行中hadoop增加和删除datanode (*)
    第三届云计算大会 罗志国:中国移动大云的研发和实践(转载)
    [Hadoop in China 2011] 何鹏:Hadoop在海量网页搜索中应用分析
    Run hadoop example
    MongoDB学习笔记(三) 在MVC模式下通过Jqgrid表格操作MongoDB数据
    [Hadoop in China 2011] 蒋建平:探秘基于Hadoop的华为共有云
  • 原文地址:https://www.cnblogs.com/qqhfeng/p/5348439.html
Copyright © 2011-2022 走看看