我需要从具有最新分区的配置单元中的表中获取所有记录。该表由date,year,month
分区,例如(date=25,year=2020,month=3)
,同样会有很多分区。
分区不是静态的,并且会经常更改。我正在尝试获取查询中的最新分区。 有人可以帮我写查询吗?
答案 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)
也请阅读以下相关答案: