find out the third highest salary?
Answer Posted / akshita
select * from (select e.*,rownum r from (select distinct
sal from emp order by sal desc) e) where r = 3
| Is This Answer Correct ? | 43 Yes | 16 No |
Post New Answer View All Answers
Why do we need integrity constraints in a database?
List out the difference between commit, rollback, and savepoint?
How to insert a record into a table?
How do I limit the number of rows returned by an oracle query after ordering?
Explain the use of rows option in exp command.
How does oracle handle read consistency?
How to assign data of the deleted row to variables?
What happens in oracle commit?
Explain what does a control file contain?
What are the different types of record groups in oracle? Explain each of them
What is the difference between substr and instr?
How to do a full database export?
How many categories of data types in oracle?
What happens if the imported table already exists?
How to list all user accounts in oracle?