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
select * from employee order by salary desc limit 1,1
Description : limit x,y
limit x,y