欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SQL 游标的写法

程序员文章站 2022-07-10 11:35:39
DECLARE @Y1002 varchar(200),@A0100 varchar(200),@C0103 datetime ----定义变量 DECLARE Police_Department CURSOR FOR --定义游标 SELECT Y1002,A0100,C0103... ......
declare  @y1002 varchar(200),@a0100 varchar(200),@c0103 datetime                   ----定义变量
declare  police_department cursor for                                       --定义游标
select y1002,a0100,c0103 from a001a000  where left(y1002,1)='4' and laborstate=1             ---查询的数据
open police_department                                                     --打开游标
fetch next from police_department into @y1002,@a0100,@c0103                      --将游标向下移1行,获取的数据放入之前定义的变量@@y1002,@a0100,@c0103中,这个支段的数量要与查出的支段数量一致
while @@fetch_status=0                                                     --判断是否成功获取数据
	begin 
	                                                     -----这里写代码逻辑块    
		fetch  next from  police_department into @y1002,@a0100,@c0103           --将游标向下移1行
	end  
close police_department                                           --关闭游标
deallocate police_department                                        --释放游标
---游标可用于循环