sqlserver分组取top

select s.*  

from ( 

    select *, row_number() over (partition by [分组字段] order by [排序字段]) as 别名  

    from 表名称

) s

where s.别名 = 1

  ..

猜你喜欢

转载自www.cnblogs.com/salv/p/11832130.html