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
What is the difference between sql and mysql?
what are the advantages and disadvantages of cascading style sheets? : Sql dba
How do I tune a sql query?
Can we insert data in view?
What is a full join?
How do you pronounce sql?
How to change sql*plus system settings?
Explain about various levels of constraint.
How can you fetch common records from two tables?
explain the difference between myisam static and myisam dynamic. : Sql dba
When do we use triggers?
What is sql data?
How would you reference column values before and after you have inserted and deleted triggers?
What is minus?
How do you modify a table in sql?