how to check the 3rd max salary from an employee table?
Answer Posted / tushar
select max(sal) from ( select sal from emp group by sal order by sal) where rownum<4;
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Can procedure in package be overloaded?
Is null operator in sql?
Explain locks? : Transact sql
What is the least restrictive isolation level? : Transact sql
How do I copy a table in sql?
Why do we use set serveroutput on?
Explain the working of foreign key?
how to use regular expression in pattern match conditions? : Sql dba
What is a pl/sql block?
Mention what problem one might face while writing log information to a data-base table in pl/sql?
How do you write a subquery?
What does select * from mean in sql?
how many sql dml commands are supported by 'mysql'? : Sql dba
What are few of the schema objects that are created using PL/SQL?
What is the need of a partition key?