SQL Server 遍曆

來源:互聯網
上載者:User
文章目錄
  • 使用 Transact-SQL 陳述式迴圈結果集
使用 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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.