Find out the 3rd highest salary?
Answer Posted / sachin
select * from ( select * from (select * from emp order by
sal desc)
where rownum<=3
order by rownum desc)
where rownum=1
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What is clustered index sql?
Why primary key is required?
What are the different datatypes available in PL/SQL?
How do we accept inputs from user during runtime?
Why use triggers in sql?
Explain isolation levels. : Transact sql
What is cascade in sql?
How to write pl sql program in mysql command prompt?
What is number function in sql?
Why commit is not used in triggers?
what is a composite key ? : Sql dba
Explain alias in sql?
what is the stuff function and how does it differ from the replace function? : Sql dba
Is a view faster than a stored procedure?
Is sql free?