row_number()函式將針對select語句返回的每一行,從1開始編號,賦予其連續的編號。在查詢時應用了乙個排序標準後,只有通過編號才能夠保證其順序是一致的,當使用row_number函式時,也需要專門一列用於預先排序以便於進行編號。
row_number()常用的幾種情況
1.使用row_number()函式進行編號,如
select email,customerid, row_number() over(order
by psd) as
rows
from qt_customer
原理:先按psd進行排序,排序完後,給每條資料進行編號。
2.在訂單中按**的公升序進行排序,並給每條記錄進行排序**如下:
select did,customerid,totalprice,row_number() over(order
by totalprice) as
rows
from op_order
3.統計出每乙個各戶的所有訂單並按每乙個客戶下的訂單的金額 公升序排序,同時給每乙個客戶的訂單進行編號。這樣就知道每個客戶下幾單了。
**如下:
select row_number() over(partition by customerid order
by totalprice) as
rows,customerid,totalprice, did from op_order
4.統計每乙個客戶最近下的訂單是第幾次下的訂單。
**如下:
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
'下單次數',customerid from tabs group
by customerid
5.統計每乙個客戶所有的訂單中購買的金額最小,而且並統計改訂單中,客戶是第幾次購買的。
上圖:rows表示客戶是第幾次購買。
思路:利用臨時表來執行這一操作。
1.先按客戶進行分組,然後按客戶的下單的時間進行排序,並進行編號。
2.然後利用子查詢查詢出每乙個客戶購買時的最小**。
3.根據查詢出每乙個客戶的最小**來查詢相應的記錄。
**如下:
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()可用於分頁
思路:先把所有的產品篩選出來,然後對這些產品進行編號。然後在where子句中進行過濾。
例項
--分頁儲存過程
create proc usp_getmyphotos
@pageindex int, --當前頁碼
@pagesize int, --每頁多少條
@pagecount int
output --計算 總共多少頁
asdeclare @count
int --總共多少條
select @count =count(*) from photos
set @pagecount = ceiling( @count*1.0/@pagesize)
select * from
(select *,row_number() over(order
by pid desc) as num
from photos) as t
where num between @pagesize*(@pageindex-1) + 1
and @pagesize*@pageindex
8.在使用over等函式時,over裡頭的分組及排序的執行晚於「where,group by,order by」的執行。
**:
select
row_number() over(partition by customerid order
by insdt) as
rows,
customerid,totalprice, did
from op_order where insdt>'2011-07-22'
以上**是先執行where子句,執行完後,再給每一條記錄進行編號。
**部落格:
sqlserver 中Cube,rollup的使用
一 select from cj 1張三語文80.0 2張三數學90.0 3張三物理85.0 4李四語文85.0 5李四數學92.0 6李四物理82.0 二 select name,sum result from cj group by name 李四259.0 張三255.0 三 select n...
sql server 中語法校驗
在今天的培訓考試過程中,我提出乙個擴充套件題,要求對提交的sql進行語法校驗.其實這個題很簡單,根本不需要用正規表示式去做語法分析,可以直接使用sql server自帶的功能.不多說,上 alter proc sp checksql sql varchar 8000 error varchar ma...
SQL Server中的查詢
本博文簡單介紹一下sql server中常用的幾類查詢及相關使用的方法。一 executescalar方法獲取單一值 executescalar方法是sqlcommand類的方法之一,執行查詢,並返回查詢所返回的結果集中的第一行第一列。csharp view plain copy print cla...