sqlserver 创建游标for循环

  • Post author:
  • Post category:其他


USE [SapAllData]
GO

CREATE PROCEDURE [dbo].[PK_Test]
AS
	--声明1个变量
	declare @O_company nvarchar(20)  
	
	--声明一个游标mycursor,select语句中参数的个数必须要和从游标取出的变量名相同
	declare mycursor cursor for select dbname from SapAllData..company
	--打开游标
	open mycursor	 
	--从游标里取出数据赋值到我们刚才声明的2个变量中
	fetch next from mycursor into @O_company	 
	--判断游标的状态
	-- 0 fetch语句成功    
	---1 fetch语句失败或此行不在结果集中    
	---2 被提取的行不存在
	while (@@fetch_status=0)
	--select 
--'''+@O_company+''' as 公司 ,
--code 结算期间,
--case when periodstat=''C'' then ''结算期间'' 
--when  periodstat=''Y'' then ''已锁定'' else ''已解锁'' end 状态
--from  '+' ' +@O_company+'..[ofpr] where T_RefDate <=@time
	begin	 
	--显示出我们每次用游标取出的值
	   --print 'union all'
	      print '
insert into '+' ' +@O_company+'..otrc
select * from beijingywwl..otrc where trnscode=''TCS1''
'
	  
	--用游标去取下一条记录
	   fetch next from mycursor into @O_company
	end
	--关闭游标
	close mycursor
	--撤销游标
	DEALLOCATE mycursor 
GO






版权声明:本文为ko_oi原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。