解决方案 »

  1.   

    使用row_number实现吧,百度下例子一堆
      

  2.   

    seelct * from table1 
    where a,c (select distinct a,c from table1 where rownum =1 order by c desc) 
      

  3.   

    这个……,你和楼主一样去百度下row_number的用法吧
    select a,b,c,d
    from(
    select T.*,ROW_NUMBER()OVER(PARTITION  BY A,C ORDER BY B DESC) RN
    from T
    )where RN=1