sql 游标循环

declare  @id int,@value nvarchar(100);
begin
    declare c_test_main cursor fast_forward for select hps_hpId,hps_time  from  hospitalPermSupp where hps_usId=1;
    open c_test_main;--打开游标
    while 1=1 --开始循环
    begin
        fetch next from c_test_main into @id,@value; --赋值到变量中
        if(@@fetch_status!=0)break;--如果没有结果退出循环
        select @id as a,@value as b
    end
    close c_test_main    --关闭游标
    deallocate c_test_main    --释放游标
end

猜你喜欢

转载自www.cnblogs.com/fyy1003668657/p/10875443.html
今日推荐