HIVE分组排序问题

Posted OnTheWay_duking

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HIVE分组排序问题相关的知识,希望对你有一定的参考价值。

 

答案:

hive> select *,row_number() over (partition by product_no order by start_time desc) from table1;

 

 

知识点:

1、row_number
  1. hive (test)> select *, row_number() over (partition by sub order by score) as od from t; 
 
2、rank
  1. hive (test)> select *, rank() over (partition by sub order by score) as od from t; 
 
3、dense_ran
  1. hive (test)> select *, dense_rank() over (partition by sub order by score desc) from t;
 
业务实例:
统计每个学科的前三名
  1. select * from (select *, row_number() over (partition by sub order by score desc) as od from t ) t where od<=3;
语文成绩是80分的排名是多少
  1. hive (test)> select od from (select *, row_number() over (partition by sub order by score desc) as od from t )t where sub=‘chinese‘ and score=80;
分页查询
  1. hive (test)> select * from (select *, row_number() over () as rn from t) t1 where rn between 1 and 5;

以上是关于HIVE分组排序问题的主要内容,如果未能解决你的问题,请参考以下文章

hive 分组排序,topN

Hive分组取TOPN数据

hive关于窗口函数的使用

hive 排序 分组计数后排序 几种不同函数的效果

在 Hive 和 Presto 中按分组聚合字符串并按顺序排序

Hive学习04-查询 分组 join 排序