Find out the 3rd highest salary?
Answer Posted / lalit dwivedi
select a.salary
from emp a
where 3=(select count(distinct(b.salary))
from emp b
where a.salary<=b.salary)
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How do you declare a user-defined exception?
Explain commit, rollback and savepoint.
how to rename an existing column in a table? : Sql dba
What is a call statement? Explain with an example.
What is right join sql?
What are different categories of sql commands?
how to include comments in sql statements? : Sql dba
what are string data types? : Sql dba
What is procedure function?
How do I install microsoft sql?
What is java sql drivermanager?
Why do we need view in sql?
What will you get by the cursor attribute sql%found?
What is cte?
Explain what is a view?