Write a query to get 2nd maximum salary in an employee table ?
Answer Posted / nitika
SELECT MAX(SAL) FROM EMPLOYEE WHERE SAL<(SELECT MAX(SAL)
FROM EMPLOYEE);
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What view means?
What is compound trigger?
What is pl sql and why it is used for?
What are pl/sql packages?
Is ms sql is free?
how many groups of data types? : Sql dba
What does := mean in pl sql?
Explain the types of joins in sql?
How to look at the current sql*plus system settings?
What is raw datatype in sql?
Show how functions and procedures are called in a pl/sql block.
How do I edit a trigger in sql developer?
What is varray in pl sql?
What is lexical units in pl sql?
Can ddl statements be used in pl/sql?