BonnieWss

根据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

分类:

技术点:

相关文章: