ms sql server 游标
很简单的一个小例子。
/****** Object: StoredProcedure [dbo].[usp_test] Script Date: 10/28/2016 15:08:31 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO create procedure [dbo].[usp_test] as declare @sRYBM varchar(20),@sJGBM varchar(20) declare sCursor cursor for select rybm,jgbm from sys_czry --for xml path('')---操作人员表 open sCursor fetch next from sCursor into @sRYBM,@sJGBM While(@@Fetch_Status = 0) begin print @sRYBM+' '+@sJGBM fetch next from sCursor into @sRYBM,@sJGBM end close sCursor Deallocate sCursor GO
如果你真心觉得文章写得不错,而且对你有所帮助,那就不妨小小打赏一下吧,如果囊中羞涩,不妨帮忙“推荐"一下,您的“推荐”和”打赏“将是我最大的写作动力!
本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接.