how to find the second highest salary from emp table?
Answer Posted / vinod
SELECT MAX(SAL) FROM TEST_123 WHERE SAL NOT IN (SELECT
MAX(SAL) FROM TEST_123)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what are the performance and scalability characteristics of mysql? : Sql dba
What is the sql case statement?
How to run sql*plus commands in sql developer?
Explain ttitle and btitle.
what is the syntax for using sql_variant_property? : Transact sql
Define the select into statement.
How to load data with sql*loader?
how to create a new view in mysql? : Sql dba
what is a trigger in mysql? Define different types of trigger. : Sql dba
what is primary key? : Sql dba
Is coalesce faster than isnull?
what is column? : Sql dba
what is the use of double ampersand (&&) in sql queries?
What action do you have to perform before retrieving data from the next result set of a stored procedure ?
What is the difference between left outer join and left join?