Sqlserver中實現oralce 資料庫的rownumber

來源:互聯網
上載者:User

標籤:blog   http   java   使用   資料   log   資料庫   sql   

引用自:http://cai555.javaeye.com/blog/466033

方法1:

with temp as

( select row_number() over(order by cityID) as rownum,cityName from city )

select * from temp where rownum between 10 and 20

go

解釋:

1 此方法把括弧裡的查詢結果放到變數:temp 裡面( 我也不確定是不是變數), 並用row_number() 函數進行一個行號跟蹤, 再用over 函數進行一個列的定序( 是這必須的), 並指定列名為‘rownum‘

2 緊接著在下面的語句可以對 ‘rownum‘ 進行一個指定行號的查詢

3 此批語句執行完畢後, 變數:temp 釋放

方法2:

select identity(int,1,1) as rownum, cityName into #temp from city

select * from #temp where rownum between 10 and 20

go

解釋:

此方法跟上面的差不多的意思, 只不過把 row_number() 函數換成了 identity() 函數

並把結果集放在一個暫存資料表裡面, 當批語句執行完畢, 此暫存資料表還可以使用

相關文章

聯繫我們

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