how to check the 3rd max salary from an employee table?
Answer Posted / nagendra
select min(sal) from emp where sal in( select top 3 sal
from emp order by sal desc)
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
How do I run a sql query?
What is sql stand for?
How do I create a sql script?
What is a join query?
Describe types of sql statements?
Why we use triggers in mysql?
How do I run a pl sql procedure in sql developer?
Which language is used in sql?
what is the syntax used for partition in tsql? : Transact sql
what is the difference between mysql_fetch_array and mysql_fetch_object? : Sql dba
What does cursor do in sql?
Why do we need cursor in pl sql?
What are the different types of database management systems?
What is trigger with example?
What is a subquery in sql?