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
What is information schema in sql?
What is the difference between the conventional and direct path loads? : aql loader
what is uncommittable transactions? : Transact sql
What is the location of pre_defined_functions.
What is sql engine in oracle?
What is the maximum database size for sql express?
what are the different index configurations a table can have? : Sql dba
How to know the last executed procedure?
What are the parts of a sql statement?
Explain what is dbms?
What is PL/SQL Records?
what's the difference between a primary key and a unique key? : Sql dba
Which sql statement is used to return only different values?
How to connect a sql*plus session to an oracle server?
How can get second highest salary in sql?