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 are local and global variables and their differences?
can a stored procedure call itself or recursive stored procedure? : Sql dba
What is the difference between inner join and left join?
What are different types of queries in sql?
What is function and procedure in pl sql?
What is bulk collect in pl sql?
How to get list of all tables from a database?
What is not equal in sql?
What are sql*plus environment variables?
What happens when a trigger is associated to a view?
What is record data type?
Which table is left in join?
What are sql procedures?
What does := mean in pl sql?
Can a select statement fire a trigger?