find out the third highest salary?
Answer Posted / anirban mitra
SELECT MAX(SAL) FROM EMP WHERE SAL NOT IN (SELECT MAX(SAL)
FROM EMP UNION SELECT MAX(SAL) FROM EMP WHERE SAL NOT IN
(SELECT MAX(SAL) FROM EMP))
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
What are operators in oracle?
What is a private synonym?
How can we find out the current date and time in oracle?
How to view the data files in the current database?
Which is better Oracle or MS SQL? Why?
What is the relation of a user account and a schema?
Why is oracle used?
When system tablespace is created?
How to write date and time interval literals in oracle?
What is control file used for?
what is the difference between restoring and recovering?
What is oracle open database communication (odbc)?
How to put more than 1000 values into an oracle in clause?
How to drop a stored procedure in oracle?
What are the differences between number and binary_float in oracle?