how to find the second highest salary from emp table?
Answer Posted / ajeshanath
select max(salary) from emp where salary not in
(select max(salary) from emp)
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Why use stored procedures?
What does t sql mean?
Explain mutating table error.
How to get each name only once from an employee table?
how are mysql timestamps seen to a user? : Sql dba
How many primary keys can a table have?
what is an extent ? : Sql dba
What are the limitations of sql express?
What is pivot in sql?
What are the topics in pl sql?
What do you understand by pl/sql cursors?
how is myisam table stored? : Sql dba
What is scalar and vector?
Define join and name different types of joins?
Write a query to find the names of users that begin with "um" in sql?