oracle分组并在组内排序

根据c1,c2分组,并且根据c3排序,取第一行
select tt.*
  from (select row_number() over(partition by c1, c2 order by c3 desc) r,
               t.*
          from test_table t) tt
 where tt.r = 1

猜你喜欢

转载自www.cnblogs.com/BonnieWss/p/9253316.html