find out the third highest salary?
Answer Posted / santanu
3rd highest salary:
select max(sal) from emp
where sal < (select max(sal) from emp
where sal < (select max(sal) from emp))
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to use "in out" parameter properly?
Can we create trigger on materialized view in oracle?
What are the different types of record groups in oracle? Explain each of them
How to insert a record into a table?
How to use "if" statements on multiple conditions?
How to delete a user account in oracle?
Explain the use of record option in exp command.
How can I see all tables in oracle?
How do I decide when to use right joins/left joins or inner joins or how to determine which table is on which side?
What is rich query?
What are group functions in oracle?
How do I reset a sequence in oracle?
What is truncate oracle?
What is a tns file?
Please explain compound trigger in oracle?