sql - how to find third highest salary -


how find out third highest salary table using sql query? please give me example showing query

select min(salary) employes salary in  (select top 3 salary employes order salary desc) 

Comments