用Sql语句实现查找一列中第N大值   select * from 
(select t.*,dense_rank() over (order by sal) rank from employee) 
where rank = N;