find out the third highest salary?
Answer Posted / amit sutar
select min(salary)
from(select distinct(salary)
from employees
order by salary desc)
where rownum<=5;
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
Is oracle an open source?
What is set verify off in oracle?
How to define an external table with a text file?
Using the relations and the rules set out in the notes under each relation, write statements to create the two sequence generators specified in the notes.
How to pass a cursor variable to a procedure?
Explain what are synonyms used for?
How to convert times to characters in oracle?
Please explain drop constraint oracle?
What is a database schema in oracle?
How can I see all tables in oracle?
How to add a new column to an existing table in oracle?
I have a parent program and a child program. I want to write a statement in Exception Block of the parent program so that when the statement in the exception block is executed, the control goes to the next statement in the parent block bypassing the child block.How do i do that?
What is oracle open database communication (odbc)?
How to specify default values in insert statement using oracle?
In not less than 100 words what's the main difference between Rolap and Molap in ORACLE ?