SQL Server 游标的简单使用

declare @id int --定义接收变量
declare @name nvarchar(20) --定义接收变量
declare type_cur cursor static  --定义游标[static:静态游标]
for 
  select id,type_name from ST_Type
open type_cur 
fetch next from type_cur into @id,@name --循环游标
while @@FETCH_STATUS =0 --假如检索到了数据继续执行
begin
    ---------------逻辑开始部分-----------------
    print @name
    if(@id=2)
    begin
        update ST_Type set type_name='测试:'+type_name where id=3
    end
    ---------------逻辑结束部分-----------------
    fetch next from type_cur into @id,@name --获取下一条数据并赋值给变量
end
close type_cur --关闭游标
deallocate type_cur --删除游标

在数据比较多的情况下使用游标会造成读取数据缓慢或者运行错误
建议在数据量比较大的时候少游标,或者分段查询,也可以使用零时表查询

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。