find out the third highest salary?
Answer Posted / chanchal
SELECT MIN(salary) FROM Department WHERE salary IN
(SELECT TOP 3 salary FROM Department ORDER BY salary DESC)
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What is the difference between "as" and "is" in an oracle stored procedure?
How to convert dates to characters in oracle?
Explain table?
What is an external table?
How to define an anonymous procedure without variables?
Explain the use of Merge statement in oracle 11g
How does one get the view definition of fixed views/tables?
How to create an initialization parameter file?
What is backup in Oracle?
Can we use bind variables in oracle stored procedure?
What is the best way to do multi-row insert in oracle?
How to define default values for formal parameters?
Explain the use of full option in exp command.
How to pass parameters to procedures?
How to connect the oracle server as sysdba?