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
What is bulk load in oracle?
Can we insert data in view oracle?
How to end the current transaction in oracle?
Explain the use of full option in exp command.
What is the use of file param in imp command?
How to name query output columns in oracle?
What are the advantages of oracle?
master table and child table performances and comparisons in Oracle ?
What is coalesce function?
How to use windows user to connect to the server?
What is SQL access advisor in Oracle?
Explain coalesce function?
 What are the oracle DML commands possible through an update strategy?
What is the database name in oracle?
What are the different pseudo commands? Explain in general?