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
Is not equal in sql?
Can a foreign key be a duplicate?
what are the drivers in mysql? : Sql dba
how many ways we can we find the current date using mysql? : Sql dba
what is offset-fetch filter in tsql? : Transact sql
What is an index in sql with example?
What do you mean by table in sql?
Is join and inner join the same?
Do we need commit after truncate?
Explain the structure of pl/sql in brief.
What does a pl/sql package consist of?
What action do you have to perform before retrieving data from the next result set of a stored procedure ?
What is a primary key called that is made up of more than one field?
What are different sql data types?
What are the two types of exceptions in pl/sql?