使用 Transact-SQL 陳述式來迴圈結果集
有三種方法可用於迴圈一個結果集通過使用 Transact-SQL 陳述式。
一種方法是使用 臨時 表。 使用此方法,您建立初始 SELECT 語句的"快照"並將其用作基礎的"指標"。 例如:
/********** 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
第二種方法是使用 min 函數,以表格一行的"遍"一次。 此方法捕捉的添加後該儲存的過程開始執行,假設新行具有一個唯一的標識符大於正在處理在查詢中的當前行新行。 例如:
/**//********** example 2 **********/
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
備忘 : 1 和 2 兩個樣本假定一個唯一的標識符存在對於源表中的每一行。 在某些情況下,可能存在沒有唯一識別碼。 如果是這種情況,您可以修改要使用新建立的鍵列 臨時 表方法。 例如:
/**//********** example 3 **********/
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