oracle选出commodityid 中上次推送时间最晚的那个

  

  select * from  (

  

  select  h.commodityid, h.lastpushresult, rank() over (partition by h.commodityid order by h.lastpushtime  )   rk

   from t_elong_map_rateplan h   )  t  where  t.rk=1;

你可能感兴趣的:(rank(),over,(partition))