select *
from hotel_addition_orders a
where (select count(*)
from hotel_addition_orders
where hotel_order_id = a.hotel_order_id and type > a.type)<2
order by a.hotel_order_id asc, a.type desc;
#班級排名----比我分數高的人少於2,那我就排第二名
select *
from hotel_addition_orders where type = 2;
select *
from hotel_addition_orders a
where
(select count(0) from hotel_addition_orders b where b.hotel_order_id = a.hotel_order_id and type in(1,2,5)) = 3
group by hotel_order_id order by hotel_order_id desc;
mysql 分組取每個組的前幾名的問題
相關文章
- MySQL 多表分組後獲取每一組的時間最大的那條記錄MySql
- 一句話從 Mysql 取每組前三名MySql
- 查詢每個班級前幾名
- MySQL組複製的幾個常見問題以及解決辦法MySql
- MySQL分組後,取出每組最新申請的一條記錄MySql
- MySQL分組查詢後獲取前N條資料MySql
- sql 按著時間分組,每組取 20 條資料SQL
- SQL 如何計算每個分組的中位數SQL
- MySQL 分組後取最新記錄MySql
- MySQL 分組排序後 → 如何取前N條或倒數N條MySql排序
- 一句話從 Hive 取每組前三名Hive
- 一句話從 Oracle 取每組前三名Oracle
- MYSQL——分組MySql
- Python的pandas的Dataframe使用groupby分組並求每組的統計值Python
- SQL 如何查詢每個分組都出現的欄位值SQL
- sql取每組最新資料SQL
- Mysql 分組排序的sql寫法MySql排序
- mysql叢集02:幾個問題MySql
- 面試中被問到一組有序序列(從小到大),求這組序列中的前n個面試
- 請問幾個模組如何共享 common下面模板?
- MySQL實現分組排序MySql排序
- 每週一個 Python 模組 | copyPython
- 每週一個 Python 模組 | functoolsPython
- 每週一個 Python 模組 | jsonPythonJSON
- 每週一個 Python 模組 | stringPython
- 每週一個 Python 模組 | socketPython
- 每週一個 Python 模組 | heapqPython
- 每週一個 Python 模組 | enumPython
- 每週一個 Python 模組 | itertoolsPython
- 每週一個 Python 模組 | timePython
- 每週一個 Python 模組 | bisectPython
- 每週一個 Python 模組 | QueuePython
- 每週一個 Python 模組 | structPythonStruct
- 每週一個 Python 模組 | signalPython
- 每週一個 Python 模組 | unittestPython
- 每週一個 Python 模組 | linecachePython
- 每週一個 Python 模組 | pathlibPython
- 每週一個 Python 模組 | hashlibPython