sql 游标使用笔记

前端之家收集整理的这篇文章主要介绍了sql 游标使用笔记前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="10979" class="copybut" id="copybut10979" onclick="doCopy('code10979')"> 代码如下:

<div class="codebody" id="code10979">
declare @pdtid nvarchar(50)
declare @ptype nvarchar(50)
declare my_cursor CURSOR for
select pdtid,ptype from dbo.Product
open my_cursor
fetch next from my_cursor
into @pdtid,@ptype
while @@fetch_status=0
begin
fetch next from my_cursor
end
close my_cursor

原文链接:https://www.f2er.com/mssql/64024.html

猜你在找的MsSQL相关文章