码迷,mamicode.com
首页 > 编程语言 > 详细

分组后按时间排序每组取最新一条记录

时间:2020-05-19 12:48:29      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:内连接   time   change   inner   sele   inf   日期   code   img   

如图,我想是实现按取每一种币别的最新的那条汇率;

技术图片

 

先按币别分组 筛选出你小于指定日期的最大时间和币别集合

select cur_Id,max(pre_time)as preTime from fc_excrate_adjust fe where fe.pre_time<=to_date(‘2020-05-11‘, ‘yyyy-MM-dd‘)  group by cur_Id

在用原表内连接 用条件联立

select a.cur_id,a.old_exchange_rate,a.new_exchange_rate from fc_excrate_adjust a
inner join (select cur_Id,max(pre_time)as preTime from fc_excrate_adjust fe where fe.pre_time<=to_date(‘2020-05-11‘, ‘yyyy-MM-dd‘)
group by cur_Id)bs on bs.cur_Id=a.cur_id and bs.preTime = a.pre_time;

这样获取的集合即是每个币种在指定日期前最新汇率的集合了

 

分组后按时间排序每组取最新一条记录

标签:内连接   time   change   inner   sele   inf   日期   code   img   

原文地址:https://www.cnblogs.com/ketoli/p/12916060.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!