find out the second highest salary?
Answer Posted / nagaraju
SELECT LEVEL,MAX(SAL)
FROM EMP
WHERE LEVEL IN(2,3)
CONNECT BY PRIOR SAL>SAL
GROUP BY LEVEL;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to run create database statement?
What is the maximum limit on the number of columns in a table?
What are nested tables?
How to initialize variables with default values?
What is PL/SQL ?
What is oracle in java?
Respected sir, Please send me technical questions related to oracle apps..
What do you mean by a deadlock?
How do I reset a sequence in oracle?
How to lock and unlock a user account in oracle?
How to use regular expression in pattern match conditions in oracle?
What is parameterized cursor in oracle?
What are the different pseudo commands? Explain in general?
What is execute immediate in oracle?
How do I recompile a procedure in oracle?