Find out the 3rd highest salary?
Answer Posted / srikanth
select q.sal
from emp q
where 3=(select distinct(count(b.sal))
from emp b
where q.sal<=b.sal)
| Is This Answer Correct ? | 17 Yes | 10 No |
Post New Answer View All Answers
Explain what is dbms?
What is auto increment feature in sql?
What are triggers in sql?
What are the types of functions in sql?
How exception handling is done in advance pl/sql?
What is structural independence and why is it important?
What is lookup table in sql?
What are inner and outer joins examples of both?
how to convert dates to character strings? : Sql dba
Is stored procedure faster than query?
How sql query is executed?
What is the difference between cross join and natural join?
Why is nosql good?
How to create a menu in sqlplus or pl/sql?
What is range partitioning?