首页 > 数据库 > SQL Server > 正文

sql 游标使用笔记

2020-07-25 13:22:49
字体:
来源:转载
供稿:网友
复制代码 代码如下:

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
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表