1.how to extract the second highest salary from emp table
having sal as a column which contains the salary of all
employee of an organisation.
Answer Posted / hema
Select sal from emp a where 2=(select count(distinct sal)
from emp b where a.sal <= b.sal)
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
how to make an oracle object
query optmization techniques and quwry analyser+projects+ppts
How to drop a stored function?
How to create a table interactively?
What operating systems are supported by oracle database 10g xe?
How to create a table in a specific tablespace?
what is insert all statement in sql
How to export data to a csv file?
How to insert a new row into a table in oracle?
How to use like conditions in oracle?
What is clustered table in Oracle?
Explain the use of file option in exp command.
How to check the oracle tns settings?
How to pass a cursor variable to a procedure?
What is rowid and rownum in oracle?