当前位置:主页 > 数据库 > MsSql >

sql 游标使用笔记

时间:2020-11-13 08:37:22 | 栏目:MsSql | 点击:

复制代码 代码如下:

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

您可能感兴趣的文章:

相关文章