Write a query to get 2nd maximum salary in an employee table ?
Answer Posted / kotravel. b
SELECT MAX(SAL) FROM EMPLOYEE WHERE SAL<(SELECT MAX(SAL)
FROM EMPLOYEE);
THIS will surly give 2^nd max sal ok this correct ans ok....
| Is This Answer Correct ? | 85 Yes | 13 No |
Post New Answer View All Answers
Why do we use function in pl sql?
What is dml statement?
What is rank () in sql?
explain the difference between myisam static and myisam dynamic. : Sql dba
What is having clause in sql?
How to create your own reports in sql developer?
Is record in oracle pl sql?
What is sql lookup?
Is oracle and sql same?
What is the purpose of a secondary key?
What does plv msg allows you to do?
Is a view faster than a stored procedure?
what are the advantages of using stored procedures? : Sql dba
Does a user_objects view have an entry for a trigger?
Explain commit, rollback and savepoint.