select isnull(salary,null) as SecondHighestSalary from(select distinct salary,row_number()over(order by salary desc) rn from Employee ) temp where rn=2; 其他 2019-05-30 23:02 0 阅读 NoSuchKey 猜你喜欢