Write a query to get 2nd maximum salary in an employee table ?
Answer Posted / google
Select min(sal) from emp where sal in (
select top 3 sal from emp
order by sal desc )
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why do we need pl sql?
What is auto increment in sql?
What is error ora-01000: maximum open cursors exceeded
When do we use triggers?
how do you tune the slow running queries in oracle db , explain the methodology
How can I delete duplicate rows?
What are different types of sql commands?
How to select unique records from a table?
What is percent sign in sql?
What are hotfixes and patches?
Can two tables have same primary key?
What is anonymous block in sql?
Why do you partition data?
what are the types of join and explain each? : Sql dba
Explain character-manipulation functions?