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 a materialized view? : Sql dba
what is the difference between mysql_fetch_array and mysql_fetch_object? : Sql dba
What is cte sql?
Does a primary key have to be a number?
Can we use pl sql in mysql?
What is the difference between delete, truncate and drop command?
How to call a javascript function from pl sql?
Can we delete column in sql?
What is the left table in sql?
What does stand for in sql?
How do sql triggers work?
What is union and union all keyword in sql?
Is full outer join same as cross join?
What are functions in sql?
Explain the difference between rename and alias?