how we can find nth max salary from an employe table by
using my sql?
Answer Posted / nivedita
select max(salary) from employee order by salary desc limit 1;
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What language is used in mysql?
How do you flush privileges?
Why we use mysqli instead of mysql?
What is row level locking in mysql?
What is the purpose of -> in the mysql terminal?
Where the database is stored in mysql?
how to dump all databases for backup. Backup file is sql commands to recreate all db's.
How can you retrieve a particular number of records from a table?
What is the use of mysqli_num_rows?
How do you connect MySQL database with PHP?
Why do we use the mysql database server?
What is the function of mysqldump?
What is flush privileges in mysql?
can you tell how can you display the maximum salary in sql? : Mysql dba
What is delimiter in mysql trigger?