您的位置:首页 > 数据库

如何遍历一个结果集在 SQL Server 中使用 Transact-SQL

2008-07-14 00:04 585 查看

使用 Transact-SQL 语句来循环结果集

loadTOCNode(2, 'summary');有三种方法可用于循环一个结果集通过使用 Transact-SQL 语句。

一种方法是使用 临时 表。 使用此方法,您创建初始 SELECT 语句的"快照"并将其用作基础的"指针"。 例如:
[code]/********** example 1 **********/
declare @au_id char( 11 )

set rowcount 0

select * into #mytemp from authors

set rowcount 1

select @au_id = au_id from #mytemp

while @@rowcount <> 0

begin

set rowcount 0

select * from #mytemp where au_id = @au_id

delete #mytemp where au_id = @au_id

set rowcount 1

select @au_id = au_id from #mytemp<BR/>

end

set rowcount 0

[/code]

第二种方法是使用 min 函数,以表格一行的"遍"一次。 此方法捕捉的添加后该存储的过程开始执行,假设新行具有一个唯一的标识符大于正在处理在查询中的当前行新行。 例如:
[code]

declare @au_id char( 11 )

select @au_id = min( au_id ) from authors

while @au_id is not null

begin

select * from authors where au_id = @au_id

select @au_id = min( au_id ) from authors where au_id > @au_id

end

[/code]备注 : 1 和 2 两个示例假定一个唯一的标识符存在对于源表中的每一行。 在某些情况下,可能存在没有唯一标识符。 如果是这种情况,您可以修改要使用新创建的键列 临时 表方法。 例如:
[code]

set rowcount 0

select NULL mykey, * into #mytemp from authors

set rowcount 1

update #mytemp set mykey = 1

while @@rowcount > 0

begin

set rowcount 0

select * from #mytemp where mykey = 1

delete #mytemp where mykey = 1

set rowcount 1

update #mytemp set mykey = 1

end

set rowcount 0

[/code]
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: