find out the third highest salary?
Answer Posted / shivaprasad
select distinct top 1 Salary from(select distinct top 3
Salary from Employee order by Salary DESC)temp order by
Salary;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why does Oracle not permit the use of PCTUSED with indexes?
why dont we assign not null constraint as table level constraint.
What is index-organized table in Oracle?
How would you configure your networking files to connect to a database by the name of DSS which resides in domain icallinc.com?
Which is better Oracle or MS SQL? Why?
Explain overloading. Can functions be overloaded?
How to count groups returned with the group by clause in oracle?
How to pass parameters to procedures in oracle?
What is a initialization parameter file in oracle?
Explain an extent?
How to omit columns with default values in insert statement in oracle?
How to write text literals in oracle?
How to view the tablespaces in the current database?
How to convert dates to characters in oracle?
Explain the use of Merge statement in oracle 11g