declare @id int --定义变量 declare @name varchar(10) --定义变量 declare cur_c cursor for select ID,name from test --定义游标 open cur_c --打开游标 fetch next from cur_c into @id,@name --取出游标中内容到变量 while @@fetch_status = 0 --执行循环 begin --循环开始 print cast(@id as varchar)+','+@name --打印结果 fetch next from cur_c into @id,@name --继续取出游标中内容到变量 end --循环结束 close cur_c --关闭游标 deallocate cur_c --释放游标
- 本文标题: SQLServer存储过程游标循环读取数据值
- 文章分类:【SQLServer】
- 非特殊说明,本文版权归【胡同里的砖头】个人博客 所有,转载请注明出处.
- 上一篇:SQL存储过程使用split循环插入数据
- 下一篇: iframe 自适应高度