SQL Server數(shù)據(jù)庫ROW_NUMBER()函數(shù)使用詳解
SQL Server數(shù)據(jù)庫ROW_NUMBER()函數(shù)的使用是本文我們要介紹的內(nèi)容,接下來我們就通過幾個實例來一一介紹ROW_NUMBER()函數(shù)的使用。
實例如下:
1.使用row_number()函數(shù)進(jìn)行編號,如
select email,customerID, ROW_NUMBER() over(order by psd) as rows from QT_Customer
原理:先按psd進(jìn)行排序,排序完后,給每條數(shù)據(jù)進(jìn)行編號。
2.在訂單中按價格的升序進(jìn)行排序,并給每條記錄進(jìn)行排序代碼如下:
select DID,customerID,totalPrice,ROW_NUMBER() over(order by totalPrice) as rows from OP_Order
3.統(tǒng)計出每一個各戶的所有訂單并按每一個客戶下的訂單的金額 升序排序,同時給每一個客戶的訂單進(jìn)行編號。這樣就知道每個客戶下幾單了。
如圖:
代碼如下:
select ROW_NUMBER() over(partition by customerID order by totalPrice) as rows,customerID,totalPrice, DID from OP_Order
4.統(tǒng)計每一個客戶最近下的訂單是第幾次下的訂單。
代碼如下:
- with tabs as
- (
- select ROW_NUMBER() over(partition by customerID order by totalPrice) as rows,customerID,totalPrice, DID from OP_Order
- )
- select MAX(rows) as '下單次數(shù)',customerID from tabs group by customerID
5.統(tǒng)計每一個客戶所有的訂單中購買的金額最小,而且并統(tǒng)計改訂單中,客戶是第幾次購買的。
如圖:
上圖:rows表示客戶是第幾次購買。
思路:利用臨時表來執(zhí)行這一操作。
1.先按客戶進(jìn)行分組,然后按客戶的下單的時間進(jìn)行排序,并進(jìn)行編號。
2.然后利用子查詢查找出每一個客戶購買時的最小價格。
3.根據(jù)查找出每一個客戶的最小價格來查找相應(yīng)的記錄。
代碼如下:
- with tabs as
- (
- select ROW_NUMBER() over(partition by customerID order by insDT) as rows,customerID,totalPrice, DID from OP_Order
- )
- select * from tabs
- where totalPrice in
- (
- select MIN(totalPrice)from tabs group by customerID
- )
6.篩選出客戶***次下的訂單。
思路。利用rows=1來查詢客戶***次下的訂單記錄。
代碼如下:
- with tabs as
- (
- select ROW_NUMBER() over(partition by customerID order by insDT) as rows,* from OP_Order
- )
- select * from tabs where rows = 1
- select * from OP_Order
7.rows_number()可用于分頁
思路:先把所有的產(chǎn)品篩選出來,然后對這些產(chǎn)品進(jìn)行編號。然后在where子句中進(jìn)行過濾。
8.注意:在使用over等開窗函數(shù)時,over里頭的分組及排序的執(zhí)行晚于“where,group by,order by”的執(zhí)行。
如下代碼:
- select
- ROW_NUMBER() over(partition by customerID order by insDT) as rows,
- customerID,totalPrice, DID
- from OP_Order where insDT>'2011-07-22'
以上代碼是先執(zhí)行where子句,執(zhí)行完后,再給每一條記錄進(jìn)行編號。
關(guān)于SQL Server數(shù)據(jù)庫ROW_NUMBER()函數(shù)的使用就介紹到這里了,希望本次的介紹能夠?qū)δ兴鶐椭?/p>
【編輯推薦】
- SQL Server 2008數(shù)據(jù)庫學(xué)習(xí)筆記
- SQL Server 2005數(shù)據(jù)庫nolock使用詳解
- SQL Server如何啟用Ad Hoc Distributed Queries?
- SQL Server 2008用存儲過程實現(xiàn)插入更新數(shù)據(jù)的實例
- 含有GROUP BY子句的查詢中如何顯示COUNT()為0的結(jié)果






