SQLSERVER针对某一字段进行排序,获取排序第几高的某一行数据 select * from ( select dense_rank() over(order by 被排序字段 asc) num,* from 表 ) t where t.num=10