Write a query to get 2nd maximum salary in an employee table ?
Answer Posted / deepa
select min(salary) from (select salary from table_name order by salary desc) where rownum<3;
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is mutating trigger?
what is the syntax used for partition in tsql? : Transact sql
How long it takes to learn pl sql?
Give the order of sql select?
What is the difference between null value, zero, and blank space?
How does a covering index work?
What is sql lookup?
What is a database trigger?
Explain the select statement in sql?
What is orm in sql?
How do I create a memory optimized filegroup?
Which are the different types of indexes in sql?
How is debugging done?
what are tables and fields? : Sql dba
Is sql easier than java?