find out the second highest salary?
Answer Posted / prasant
SQL> select max(sal) from emp where sal<(select max(sal)
from emp);
MAX(SAL)
----------
3000
| Is This Answer Correct ? | 22 Yes | 3 No |
Post New Answer View All Answers
Explain what are the characteristics of data files?
How to use group functions in the select clause using oracle?
How to initialize variables with default values?
What is coalesce function?
How to write a query with a right outer join in oracle?
How many file formats are supported to export data?
How to view the data files in the current database?
How can we delete duplicate rows in a table?
What is meant by an index?
Can we save images in a database and if yes, how?
What is a package ? What are the advantages of package ?
what is the difference between data migration and production migration.
How to save query output to a local file?
Assuming today is Monday, how would you use the DBMS_JOB package to schedule the execution of a given procedure owned by SCOTT to start Wednesday at 9AM and to run subsequently every other day at 2AM.
What is connection pooling in oracle?