how to check the 3rd max salary from an employee table?
Answer Posted / akula
select min(sal) from(select distinct(sal) from emp order by sal desc) where rownum<=3;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Are subqueries better than joins?
does sql support programming? : Sql dba
what is an alias command? : Sql dba
What is the difference between execution of triggers and stored procedures?
How to run pl/sql statements in sql*plus?
Can we join tables without foreign key?
How to run sql*plus commands in sql developer?
how can we know the count/number of elements of an array? : Sql dba
What is constant in pl sql?
What is left join in sql?
what are the advantages of sql ? : Sql dba
Is not equal in sql?
Can we insert delete data in view?
What is not equal in sql?
What makes a good primary key?