如何遍曆一個結果集在 SQL Server 中使用 Transact-SQL

來源:互聯網
上載者:User
使用 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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.