Is there a command akin to:
2nd highest salary from tbl_salary or
2nd highest salary from tbl_salary
4th highest salary from tbl_salary ?
4th highest salary from tbl_salary
Simplest Implementation,
(select * from tbl_salary order by salary desc limit 5) order by salary limit 1; (select * from tbl_salary order by salary desc limit 2) order by salary limit 1;