如何从配置单元获取最新的分区数据

时间:2020-03-24 10:28:29

标签: hive hiveql hadoop-streaming hive-partitions

我需要从具有最新分区的配置单元中的表中获取所有记录。该表由date,year,month分区,例如(date=25,year=2020,month=3),同样会有很多分区。

分区不是静态的,并且会经常更改。我正在尝试获取查询中的最新分区。 有人可以帮我写查询吗?

enter image description here

1 个答案:

答案 0 :(得分:1)

尝试一下:

select * 
  from your_table t
 where concat_ws('-',t.year,t.month,t.date) in (select max(concat_ws('-',s.year,s.month,s.date)) from your_table s)

也请阅读以下相关答案:

https://stackoverflow.com/a/59675908/2700344

https://stackoverflow.com/a/41952357/2700344