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

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

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

 

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

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;

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

 

上一篇:SAP SD基础知识之装运的组织单元(Organizational Units in Shipping)


下一篇:1710. Maximum Units on a Truck