i want department wise maxmum salary and empolyee name
Answer Posted / sai krishna
Select * from (Select Dense_Rank() over ( Partition by department_id Order by salary desc) as Rnk,E.* from HR.Employees E) where Rnk=1;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why should I use oracle database?
Does facebook use oracle?
What is Redo Log Buffer in Oracle?
How to recover a dropped table in oracle?
How to convert times to characters in oracle?
Explain the truncate in oracle?
Oracle
What is different types of joins?
What is oracle latest version?
What privilege is needed for a user to delete rows from tables in another schema?
Explain the use of file option in exp command.
I have a parent program and a child program. I want to write a statement in Exception Block of the parent program so that when the statement in the exception block is executed, the control goes to the next statement in the parent block bypassing the child block.How do i do that?
What are the uses of linked server and explain it in detail?
What is ASM (Automatic Storage Management) in Oracle?
How will you write a query to get a 5th rank student from a table student_report?