SQL server 2000 编写cursor,实现从另一个表中读取数据到一个表中。

本文介绍了一种在SQL中创建和使用临时表的方法,并通过一个具体的例子展示了如何利用临时表进行数据处理。该过程包括定义临时表结构、填充数据以及从临时表中检索信息。

 


if exists (select id from tempdb..sysobjects
           where id = object_id('tempdb..#temp'))
drop table #temp
go


create table #temp

 id   int NOT NULL IDENTITY (1, 1),
  scardno varchar(10),
  scardtype varchar(10)
)

set nocount on
declare @sql varchar(200)
declare @scardno varchar(10)
declare @scardtype varchar(10)
declare @count integer

declare cur cursor
for select scardno,scardtype,(select count(*)from tcard)as tcard_num from tcard  order by scardno  --where
--select count(*)as tcard_num from tcard
open cur
fetch next from cur  into @scardno,@scardtype,@count
while @@fetch_status=0
begin

insert into #temp( scardno,scardtype) values(@scardno,@scardtype)

fetch next from cur  into @scardno,@scardtype,@count

if((select count(*) from #temp)=@count)
break


end
deallocate cur

select * from #temp

drop table  #temp

set nocount off

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值