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
What is required to create mysql database?
What is use command in mysql?
Define REGEXP?
How do I find mysql version in mysql workbench?
How to show all tables with 'mysql'?
How to insert html code into mysql database using php?
What is triggers and how it can be used in mysql?
How do I connect to a database in mysql workbench?
How show all tables in mysql query?
What is 'mysqldump'?
How to enter Characters as HEX Numbers?
What is row level locking in access?
What is a csv table?
How do I start mysql in mysql workbench?
What is mysqli_select_db?