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 difference between procedure and trigger?
What are pl sql data types?
Why stored procedure is better than query?
What are the different types of database management systems?
Is inner join same as self join?
Explain sql data types?
what is a record in a database ? : Sql dba
How do you clear the screen in sql?
What is sql stand for?
Where do we use pl sql?
Explian rowid, rownum?
Explain autonomous transaction.
what is a tablespace? : Sql dba
describe transaction-safe table types in mysql : sql dba
Explain the steps needed to create the scheduled job?