MySQL 對某個欄位先統計後獲取排序名次
阿新 • • 發佈:2021-01-09
一,普通獲取排序名次
比如獲取一個班級成績排名,分兩步
(1)查出所有使用者和他們的成績排名
select id,maxScore,(@rowNum:=@rowNum+1) as rowNo
from t_user,
(select (@rowNum :=0) ) b
order by t_user.maxScore desc
(2)查出某個使用者在所有使用者成績中的排名
select u.rowNo from ( select id,(@rowNum:=@rowNum+1) as rowNo from t_user, (select (@rowNum :=0) ) b order by t_user.maxScore desc ) u where u.id="2015091810371700001";
二,那假如是統計某個欄位總數再排名呢,如場景:
直播間裡,觀眾給主播打賞的時候,主播可以收益貨幣,每次打賞都會記錄在A表。
A表:fuid(發起者) uid(收益者) ctime(建立時間戳) coin(貨幣)
現在使用sql語句獲取收益者B的本週收益的排名名次。(不使用迴圈)
也是分兩步,第一步,將貨幣欄位先排序好,再獲取某個單獨使用者的排序名次
(1)獲取統計欄位整體排序
select uid,sum(coin) as total,(@rowNum:=@rowNum+1) as rowNo from money, (select (@rowNum :=0) ) b where ctime BETWEEN '1609498844' and '1610103956' GROUP BY money.uid order by total desc
(2)獲取排序好的名次欄位
select m.rowNo from (select uid,sum(coin) as total,(@rowNum:=@rowNum+1) as rowNo
from money,
(select (@rowNum :=0) ) b
where ctime BETWEEN '1609498844' and '1610103956'
GROUP BY money.uid
order by total desc) m where m.uid =102;
直接上圖:
表資料:
第一次查詢結果:
第二次直接獲取裡面的欄位就好了