求Sqlserver游标例子
如标题sql游标例子.
------解决方案--------------------百度一大堆
------解决方案--------------------create table table1(
id int,
name varchar(100)
)
insert into table1 values(1,'aaaa')
insert into table1 values(2,'bbb')
go
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
select @id,@name
fetch next from cursor1 into @id,@name --将游标向下移1行
end
close cursor1 --关闭游标
deallocate cursor1
------解决方案--------------------游标的实例太多了,楼主百度吧