游标SQL Cursor 基本用法

Posted 彼岸大师

tags:

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

http://www.cnblogs.com/Gavinzhao/archive/2010/07/14/1777644.html

 1 table1结构如下
 2 id    int
 3 name  varchar(50)
 4 
 5 declare @id int
 6 declare @name varchar(50)
 7 declare cursor1 cursor for         --定义游标cursor1
 8 select * from table1               --使用游标的对象(跟据需要填入select文)
 9 open cursor1                       --打开游标
10 
11 fetch next from cursor1 into @id,@name  --将游标向下移1行,获取的数据放入之前定义的变量@id,@name中
12 
13 while @@fetch_status=0           --判断是否成功获取数据
14 begin
15 update table1 set name=name+\'1\'
16 where id=@id                           --进行相应处理(跟据需要填入SQL文)
17 
18 fetch next from cursor1 into @id,@name  --将游标向下移1行
19 end
20 
21 close cursor1                   --关闭游标
22 deallocate cursor1

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

sql Cursor的用法

oracle cursor 用法总结

SQL Cursor 基本用法

游标用法

python 中cursor的用法

python连接数据库SQL的基本方法