how to find the second highest salary from emp table?
Answer Posted / amarendra swain
select max(sal) from employee
where sal not in (select max(sal) from employee )
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the operators used in select statements?
Why stored procedure is better than query?
what are null values? : Sql dba
How many types of normalization are there?
What are instead of triggers?
what is schema? : Sql dba
Is primary key is clustered index?
What does closing a cursor do?
Is sql a microsoft product?
What is primary key secondary key alternate key candidate key?
What is a Mapplet?
Can function return multiple values in sql?
how to get @@error and @@rowcount at the same time? : Sql dba
What is triggering circuit?
What is query execution plan in sql?