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
What is an exception in PL/SQL? What are the two types of exceptions?
How do you select unique values in sql?
Why stored procedures are faster than query?
What is the purpose of normalization?
Why coalesce is used in sql?
What are all the different normalization?
what is user defined functions? : Sql dba
What is sql profiler in oracle?
what is index? : Sql dba
How can you fetch common records from two tables?
What kind of join is join?
Define commit?
What is pivot query?
What are database links used for?
Does oracle use sql?