how will I find the first 5 highest salaried employees in
each dept in oracle.
Answer Posted / uttam
select sal from (SELECT distinct sal FROM emp order by sal
desc)
where rownum <6
| Is This Answer Correct ? | 13 Yes | 15 No |
Post New Answer View All Answers
Is oracle a language?
How to resolve name conflicts between variables and columns?
What is the difference between postgresql and oracle?
How to pass a cursor variable to a procedure?
What is the sid in oracle?
There are n numbers of flatfile of exactly same format are placed in a folder.Can we load these flatfile's data one by one to a single relational table by a single session??
What is a nvl function?
how to clone 9i Database on to 10g Database.
How many memory layers are in the oracle shared pool?
Explain the use of grant option in imp command.
How do we represent comments in oracle?
What is an external table?
State the difference along with examples between Oracle 9i, Oracle 10g and Oracle 11i.
Does facebook use oracle?
How to define a record variable to store a table row?