find out the third highest salary?
Answer Posted / raghav
select * from (
select Name,
Salary,
Dept,
Rank()over (order by salary desc) RANK
from Employee)
where RANK = 3
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What do you understand by a database object? Can you list a few of them?
Explain the difference between a procedure and a function? What do you understand by those terms?
You have 4 instances running on the same UNIX box. How can you determine which shared memory and semaphores are associated with which instance?
How to connect to oracle using service name instead of sid?
Whats the benefit of dbms_stats over analyze?
What is Redo Log Buffer in Oracle?
What is a system tablespace and when it is created?
Hi Masters, in Oracle Applications 11i, we hace 2 functions using the same form, i need to create 1 personalization, but that code must afect only one function.... how can i do that?
How to change system global area (sga) in oracle?
How to check database size in Oracle?
Does oracle charge for java?
Explain oracle insert into command?
what are actual and formal parameters?
Explain compound trigger in oracle?
An automatic job running via DBMS_JOB has failedKnowing only that its failed, how do you approach troubleshooting this issue?