文章目錄
使用 Transact-SQL 陳述式迴圈結果集
有三種方法使用可以通過使用 Transact-SQL 陳述式遍曆一個結果集。
一種方法是使用 temp 表。 使用這種方法您建立的初始的 SELECT 語句的"快照"並將其用作基礎"指標"。 例如:
1/********** example 1 **********/
2
3declare @au_id char( 11 )
4
5set rowcount 0
6select * into #mytemp from authors
7
8set rowcount 1
9
10select @au_id = au_id from #mytemp
11
12while @@rowcount <> 0
13begin
14 set rowcount 0
15 select * from #mytemp where au_id = @au_id
16 delete #mytemp where au_id = @au_id
17
18 set rowcount 1
19 select @au_id = au_id from #mytemp<BR/>
20end
21set rowcount 0
第二個的方法是表格的一行"遍曆"每次使用 Min 函數。 此方法捕獲添加儲存的過程開始執行之後, 假設新行必須大於當前正在處理在查詢中的行的唯一識別碼的新行。 例如:
1/********** example 2 **********/
2
3declare @au_id char( 11 )
4
5select @au_id = min( au_id ) from authors
6
7while @au_id is not null
8begin
9 select * from authors where au_id = @au_id
10 select @au_id = min( au_id ) from authors where au_id > @au_id
11end
注意 : 兩個樣本 1 和 2,則假定源表中的每個行唯一的標識符存在。 在某些情況下,可能存在沒有唯一識別碼。 如果是這種情況,您可以修改 temp 表方法使用新建立的鍵列。 例如:
1/********** example 3 **********/
2
3set rowcount 0
4select NULL mykey, * into #mytemp from authors
5
6set rowcount 1
7update #mytemp set mykey = 1
8
9while @@rowcount > 0
10begin
11 set rowcount 0
12 select * from #mytemp where mykey = 1
13 delete #mytemp where mykey = 1
14 set rowcount 1
15 update #mytemp set mykey = 1
16end
17set rowcount 0
18