how will I find the first 5 highest salaried employees in
each dept in oracle.
Answer Posted / sunil panghal
select rownum as row_id,salary from (select salary from
employees order by salary) where rownum <6;
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
what is the use of triggers in Java program? I mean where do we use triggers in Java programming?
Which is faster join or subquery in oracle?
How to find out what oracle odbc drivers are installed?
What is a proxy class?
What is a schema in oracle?
Why do we use bulk collect in oracle?
Explain do view contain data?
What is enter substitution variable in oracle?
How to unlock the sample user account in oracle?
How to rename a column in an existing table?
How to update values in a table in oracle?
What is a Garbage Collection? and what is full recursive Garbage collection?
How to recover a dropped table in oracle?
What is rowid and rownum in oracle?
What is the usage of save points in oracle database?