sql 游標應用筆記。本站提示廣大學習愛好者:(sql 游標應用筆記)文章只能為提供參考,不一定能成為您想要的結果。以下是sql 游標應用筆記正文
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