how will I find the first 5 highest salaried employees in
each dept in oracle.
Answer Posted / lakshya
SELECT salary FROM employee where rownum < 6 ORDER BY
salary DESC
group by dept;
| Is This Answer Correct ? | 11 Yes | 39 No |
Post New Answer View All Answers
What happens if the update subquery returns multiple rows?
what is normalisation?what are its uses?
What is the use of aggregate functions in oracle?
What is the data type of dual table?
How to pass parameters to procedures?
What is oracle in java?
What are the components of logical database structure in oracle database?
How can we find out the duplicate values in an oracle table?
What is a user role in oracle?
What is an oracle user role?
What is a procedure in oracle?
How can I create database in oracle?
What is the quickest way to fetch the data from a table?
Can we connect to ORACLE db using Windows Authentication?
what is the difference between functional dependecy and multilevel dependency?