查询数据最新分区,有时候数据不是t-1的,需要获取到最后一次的分区数据,之前使用的是最大分区:
select user_no,score from table_a where pday=(select max(pday) from table_a)上述方式为子查询,会扫描所有分区执行非常缓慢,经查询发现,join管理会更快,如下:
select
user_no
,score
from (select max(pday) pday from table_a where pday>='${three_day_ago}') t1
join table_a t2 on t1.pday=t2.pday可酌情针对近x天的数据匹配
版权声明:本文为m0_38014125原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。