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 is set transaction?
Is stored procedure faster than query?
What is sql*loader?
What is database migration?
What is a sql schema used for?
How can a function retun more than one value in oracle with proper example?
How can I change database name in sql?
What are the two types of exceptions.
What are the qualities of 2nf?
Why are sql stored procedures used?
When are we going to use truncate and delete?
Why stored procedures are faster than query?
how to convert character strings to dates? : Sql dba
What is use of package in pl sql?
what is a stored procedure? : Sql dba