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
List out the components of logical database structure of oracle database.
How many memory layers are in the oracle shared pool?
What happens to the current transaction if a ddl statement is executed?
What is literal?
What is bulk collect in oracle?
How is it different from a normal table?
How to import one table back from a dump file?
20. Using a set operator, display the client number of all clients who have never placed an order.
How many anonymous blocks can be defined?
How to open a cursor variable?
How does propagation differ between Advanced Replication and Snapshot Replication (read-only)?
What are the differences between char and varchar2 in oracle?
What is the use of aggregate functions in oracle?
What is an oracle user account?
How do we get field details of a table?