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
what are the types of subquery? : Sql dba
Is id a reserved word in sql?
Why commit is not used in triggers?
What does data normalization mean?
What is record variable?
What is sql profiling in oracle?
Is sql harder than python?
How exception handling is done in advance pl/sql?
what are the performance and scalability characteristics of mysql? : Sql dba
What is left join example?
What is the main reason behind using an index?
How do rank () and dense_rank () differ?
Where is sql database stored?
Why do we use subquery?
What are the advantages of normalization?