how we can find nth max salary from an employe table by
using my sql?
Answer Posted / sandeep
select MAXIMUM(salary) from (select salary from employee
order by salary desc limit 'n')
n means number of rows
| Is This Answer Correct ? | 10 Yes | 18 No |
Post New Answer View All Answers
Why is mysql used?
How do I create a schema in mysql?
Is mysql a dbms?
Where is the mysql config file?
How to represent ENUMs and SETs internally?
What is the difference between truncate and delete?
What is latest version of mysql?
How to get a list of all tables in a database?
What is delimiter in mysql?
Is postgresql better than mysql?
What are the differences between a primary key and foreign key?
How can you make a database as your current database?
What is delimiter in mysql trigger?
How to use like conditions?
What is difference between inner vs self vs cross?