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
What is the difference between execution of triggers and stored procedures?
Which join is default?
How does sql store data?
Is join an inner join?
How does join work in sql?
What does seeding a database mean?
Which operator is used in query for pattern matching?
How delete all data from table in sql?
Why indexing is needed?
What are aggregate functions in sql?
Why do we use procedures in pl sql?
Does sql support programming?
What packages(if any) has oracle provided for use by developers?
Define commit, rollback and savepoint?
Give the order of sql select?