Write query to fetch second maximum salary from employee table.
Answer Posted / santosh kumar
select * from(select rownum r,ename,sal from(select * from emp order by sal desc))where r=2;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the minimum client footprint required to connect c# to an oracle database?
What are data pump export and import modes?
What is oracle in java?
What is the difference between hot backup and cold backup in oracle?
What is the difference between sharding and replication?
What is transport network substrate (tns) in oracle?
How many types of database triggers exist?
Why do you create or replace procedures rather that drop and recreate.
What suggestions do you have to reduce the network traffic?
How to use subqueries with the in operator using oracle?
How to assign a table row to a record variable?
How does the on-delete-cascade statement work?
Explain integrity constraint?
How to execute a stored procedure in oracle?
How do you increase the OS limitation for open files (LINUX and/or Solaris)?