Here is my code to fetch 2nd highest salary in a company...
select salary from org order by salary desc limit(1,1)
above result will be one row ...with highest salary(100000) ,,,now i want to fetch all employes emp_names
with the second highest salary.. how to do that?