Write a query to get 2nd maximum salary in an employee table ?
Answer Posted / jebitha
select max(sal) from emp where sal<>(select max(sal) from
emp);
| Is This Answer Correct ? | 7 Yes | 9 No |
Post New Answer View All Answers
Explain raise_application_error.
What does joining a thread mean?
What is sql injection vulnerability?
How do you clear the screen in sql?
Can we create index on primary key?
What are the rules to be applied to nulls whilst doing comparisons?
what is the difference between char_length and length? : Sql dba
what are the join types in tsql? : Transact sql
What are the different operators available in sql?
What is sql constant?
What is the process of debugging?
What is the difference between an inner and outer join?
what are the properties and different types of sub-queries? : Sql dba
What is error ora-12154: tns:could not resolve the connect identifier specified?
Why we use cross join?