how will I find the first 5 highest salaried employees in
each dept in oracle.
Answer Posted / mangesh
SELECT * FROM (SELECT * FROM EMP ORDER BY SALARY desc) WHERE ROWNUM < 6;
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What happens in oracle commit?
What is the implicit cursor in oracle?
Select all the employees who were hired in last 2 years and who works in dept where max managers are working.
Describe an oracle table?
What is the difference between truncate & delete command?
What is an oracle?
What are the original export and import utilities?
Explain a synonym?
How to create a new tablespace in oracle?
Can we protect our pl/sql source code?
what is port in oracle? how is it related to database application.
What is the use of oracle?
Explain oracle instance.
IS it possible to built the oracle database without setting the kernal parameters?
What is a lookup table in oracle?