how we can find nth max salary from an employe table by
using my sql?
Answer Posted / ksam
select distinct(salary) from employee order by salary desc
limit n-1,1
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Why use mysql procedures?
Does mysql need a server?
Is mysql server free?
How to create a table index in mysql?
How to validate email addresses in mysql?
What are the column comparisons operators?
How to load a csv file into a table
Where’s database data actually stored?
How do I automate a backup in mysql?
What is row level locking in access?
Write a query to display even rows in student table using mysql?
Can you tell what are various ways to create an index?
What is heap table in mysql?
How do I get a list of table names in mysql?
What is mysql_connect?