Write a query to get 2nd maximum salary in an employee table ?
Answer Posted / nagarjuna.reddy
select max(sal) from emp where sal <> (select max(Sal) from
emp)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is stored procedure faster than query?
What are the parameter modes supported by pl/sql?
What is delimiter in pl sql?
Why do we use procedures?
What are the 3 types of behavioral triggers?
What are the types of variable use in pl sql?
Which sql most popular?
how to see the create table statement of an existing table? : Sql dba
What is count * in sql?
What is dense_rank?
Is left join same as inner join?
Explain 3 basic parts of a trigger.
Explain constraints in sql?
What is the trigger in sql?
What is a composite primary key?