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
How to delete all rows a table in oracle?
Explain overloading. Can functions be overloaded?
What is a cursor in oracle?
Can we save images in a database and if yes, how?
What is the usage of synonyms?
How do we get field detail of a table?
candidate key is subset of super key but not vice-verse explain
HI, Please let me know the syllabus for Oracle OCA and OCP Certification
How to count groups returned with the group by clause in oracle?
What is the difference between translate and replace in oracle?
Explain the use of show option in imp command.
What is merge statement used for?
why should i declare foreign key constraint as self relation instead of binary relation in tables ?
What are the attributes of cursor?
What is a relational database management system?