how to check the 3rd max salary from an employee table?
Answer Posted / arjun
select min(sal) from (select sal from (select distinct(sal)
from emp order by sal desc) where rownum<4)
Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is the difference between a procedure and a function?
what is the use of friend function? : Sql dba
What is Materialized View? In What Scenario we Use Materialized View?
How bulk collect improves performance?
What is data profiling in sql?
What is a parameter query?
What are two statement types in sql?
Is drop table faster than truncate?
what are the drivers in mysql? : Sql dba
Why is the cursor important?
What are the two types of periodical indexes?
What is schema in sql example?
Is sql better than access?
What is the use of index in hive?
Is it possible to Restore a Dropped Table using Rollback Command in Oracle SQL Plus ?