find out the third highest salary?
Answer Posted / naveen kumar
Hi everybody,
This is one way to get the third highest salary
select ROWNUM as RANK from (select * from emp order by sal)
where ROWNUM<=3
| Is This Answer Correct ? | 11 Yes | 27 No |
Post New Answer View All Answers
What are the components of logical database structure in oracle database?
What is raw datatype in oracle?
How to create a single index for multiple columns?
Explain constraining triggers.
What privilege is needed for a user to delete rows from tables in another schema?
What is connection pooling in oracle?
What is data file?
Is oracle a programming language?
How to resolve name conflicts between variables and columns?
Difference between inner join vs where ?
How can I see all tables in oracle?
How to bring a tablespace offline?
How to view the tablespaces in the current database?
What is the purpose of tables, private synonyms and public synonyms in Oracle?
What spfile/init.ora file parameter exists to force the CBO to make the execution path of a given statement use an index, even if the index scan may appear to be calculated as more costly?