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
You can do it using the limit clause:
select * from tbl_salary order by salary desc limit 2,1;