how to find the second highest salary from emp table?
Answer Posted / raju tt
select max(salary) from employees where salary not in
(select max(salary) from employees)
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
why does the selected column have to be in the group by clause or part of an aggregate function? : Sql dba
what is a trigger in mysql? : Sql dba
What is %type in sql?
What is rename command in sql?
What are triggers and its uses?
State few characteristics of pl/sql?
Is sqlexception checked or unchecked?
Can we use pl sql in sql server?
What are the types of views in sql?
What are pl/sql packages?
What is a trigger in sql?
How do I add a database to sql?
What is scalar data type in pl sql?
what are the differences between binary and varbinary? : Sql dba
Is it possible for a table to have more than one foreign key?