游标使用demo(循环,条件判断,自增长字段)

创建存储过程ut_insert_data,通过游标循环处理#temp临时表中的数据,将2010年8月12日至15日间的mz_sfzb表记录插入到真实库中,并进行主表和明细表的同步更新。使用身份字段id进行自增,通过事务处理确保数据一致性。
摘要由CSDN通过智能技术生成

--数据

create proc ut_insert_data

as

begin tran 

--声明临时表,

create table #temp

(

  id int identity(1,1),--自动ID,仅作为循环使用

  customer nvarchar(50)--存储mzzb的原来的ID

)

 

declare @cus nvarchar(50) --取得当前的要操作使用的mzzb的ID(原)

declare @n        int  --

declare @rows     int

select @n=1

--查找要恢复的数据(包含有12-15号的数据)

insert #temp(customer) select id from orgsql.dbo.mz_sfzb b where b.sfsj between '2010-08-12 00:00:00.000' and '2010-08-15 23:59:59.999'

 

select @rows = @@rowcount

 

print '要恢复的数据个数:'+str(@rows)

 

 

while @n <= @rows

 

begin

 

select @cus=customer from #temp where id = @n

-- 在真实库中插入主表信息org是真实库的数据库名

-- orgsql为包含12-15号数据的数据库名

insert into org.dbo.mz_sfzb(a1,a2)

 select b.b1,b.b2

 from orgsql.dbo.mz_sfzb b where b.id=@cus

 

 declare @Zb_ID int

 Set @Zb_ID= @@IDENTITY

 

--在真实库中插入明细

insert into org.dbo.mz_sfmx(a1,a2)

select @Zb_ID,b.b1,b.bz

from orgsql.dbo.mz_sfmx b where b.zb_id=@cus

 

 

 

--移动当前@n

select @n = @n + 1

end

--输出当前id

print '---还原的数据个数:'+str(@n-1)

if @@error > 0

         begin 

           if @@trancount>0

           rollback tran

         end

else

         begin 

           if @@trancount>0

           commit tran

         end

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值