凶狠大树

文章
7
资源
0
加入时间
3年0月9天

SQL SERVER 游标循环读取表数据

SQL SERVER 游标循环读取表数据declare @a varchar(50),@b int;--定义游标declare tempIndex cursor for (SELECT a, b from Bdc_Point) --打开游标open tempIndex --抓取下一行数据给变量,一个或者多个fetch next from tempIndex into @a, @b --进行循环,0表示抓取成功,1表示抓取失败,2表示不存在抓取行while @@fetch_status=0