find out the third highest salary?
Answer Posted / abbas
SELECT * FROM
(
SELECT EMPLOYEECODE, SAL, Rank() OVER (ORDER BY SAL DESC )
RANKNEW FROM EMPLOYEE)
WHERE RANKNEW = 3
| Is This Answer Correct ? | 9 Yes | 8 No |
Post New Answer View All Answers
I creat Credit memo in AR. Now i want revers the Credit Memo.how you can revers that what out any aditional entry.
What are the differences between blob and clob in oracle?
Explain mutating triggers.
Difference between cartesian join and cross join?
What is an oracle function?
Can you tell me how to add new column in existing views?how?How is possible?
How to resolve the ORA-39133 error in Oracle?
What is ordinary table in oracle?
Please explain oracle left join with an example?
What is null value in oracle?
You have 4 instances running on the same UNIX box. How can you determine which shared memory and semaphores are associated with which instance?
Explain the use of owner option in exp command.
What is recycle bin in Oracle?
Explain the use of inctype option in exp command.
Can you create a synonym without having a table?