How to find 1st, 2nd, 3rd highest using select select
statement not using rownum
Answer Posted / ajit
select distinct *
from (select e.*,dense_rank()over(order by sal desc) rn from emp e)
where rn in (1,2,3);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what are steps for interface? where is exchange rate defined in which table?
Explain what are clusters?
How to insert a record into a table?
What are the numeric comparison operations?
Explain joins in oracle?
What is oracle server autotrace in oracle?
what is normalisation?what are its uses?
How to export your own schema?
What is oracle database 10g express edition?
what is a Nested Loop join?
What is sharded cluster?
How to start a specific oracle instance?
What are set operators?
How to count duplicated values in a column in oracle?
What is a proxy object?