Answer Posted / anuj
For Second Highest Salary:
select salary from tbl_name order by salary desc limit 1,1
For Third Highest Salary:
select salary from tbl_name order by salary desc limit 2,1
For Fourth Highest Salary:
select salary from tbl_name order by salary desc limit 3,1
| Is This Answer Correct ? | 13 Yes | 4 No |
Post New Answer View All Answers
What is namespace in php?
Explain me what is the w3c?
What is mysqli_real_escape_string?
can you give me an example code of calling java script function in php variable using AJAX.or with out ajax??????
What is 'float' property in css?
What is the capacity of mysql database?
Is php a mvc?
How to store the uploaded file to the final location?
How can we check the value of a given variable is a number?
What is the use of isset() in php?
Will react hooks replace redux?
Explain what are the two main string operators?
Tell me is it possible to protect special characters in a query string?
What is meant by pdo in php?
What is var_dump function in php?