how to calcuate the second highest salary of he employee
Answer Posted / neetika vardhan
SELECT MAX(sal)
FROM EMP WHERE sal NOT IN (SELECT MAX(sal) FROM emp)
| Is This Answer Correct ? | 42 Yes | 3 No |
Post New Answer View All Answers
explain what is mysql? : Sql dba
Is sql a case sensitive language?
What is sql partition?
what is rdbms? : Sql dba
How does rowid help in running a query faster?
Do we need to rebuild index after truncate?
What can I use instead of union in sql?
what is the bond code in materialized view?
what are the differences between binary and varbinary? : Sql dba
Why is sharding used?
What are commit, rollback, and savepoint?
How to run sql commands in sql*plus?
What are the two parts of design view?
Differentiate between syntax and runtime errors.
How to add new employee details in an employee_details table with the following details