国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 數(shù)據(jù)庫(kù) > SQL Server > 正文

查詢數(shù)據(jù)排名情況SQL

2024-08-31 00:59:25
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

1/準(zhǔn)備測(cè)試數(shù)據(jù)

---------------------------------------------------------------------------------
create table t1(
c1 integer,
c2 integer,
c3 integer
);

insert into t1 values(1,2,3)

insert into t1 values(1,8,4)
insert into t1 values(1,4,4)

insert into t1 values(1,4,5)

insert into t1 values(1,5,5)

insert into t1 values(2,2,3)

insert into t1 values(2,8,4)
insert into t1 values(2,4,4)

insert into t1 values(2,4,5)

insert into t1 values(2,5,5)

2/查看排名

---------------------------------------------------------------------------------

A/單記錄排名

select c1,c3,
(select count( c3)+1 from t1 a where a.c3>b.c3
and a.c1=b.c1 and a.c1 =1
) order_num
from t1 b
where  c1 =1
order by c1,c3

c1          c3          order_num             
----------- ----------- ----------------------
1           3           5                     
1           4           3                     
1           4           3                     
1           5           1                     
1           5           1     
B/多記錄排名

select c1,c2,c3,
(select count( c3)+1 from t1 a where a.c3>b.c3
and a.c1=b.c1
) order_num
from t1 b
order by c1,c3


c1          c2          c3          order_num             
----------- ----------- ----------- ----------------------
1           2           3           5                     
1           8           4           3                     
1           4           4           3                     
1           4           5           1                     
1           5           5           1                     
2           2           3           5                     
2           8           4           3                     
2           4           4           3                     
2           4           5           1                     
2           5           5           1  

 

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 炉霍县| 赤峰市| 太白县| 英德市| 黄大仙区| 霍邱县| 广平县| 云南省| 菏泽市| 沁源县| 陵水| 林甸县| 新龙县| 枣阳市| 会同县| 福清市| 望奎县| 屯留县| 广东省| 黄龙县| 奎屯市| 通江县| 邻水| 怀来县| 长丰县| 礼泉县| 镇巴县| 文山县| 星座| 石城县| 淄博市| 咸丰县| 辉县市| 平谷区| 洪洞县| 奇台县| 克东县| 东乡县| 宁化县| 休宁县| 抚松县|