find out the third highest salary?
Answer Posted / naveen kumar
Hi everybody,
This is one way to get the third highest salary
select ROWNUM as RANK from (select * from emp order by sal)
where ROWNUM<=3
| Is This Answer Correct ? | 11 Yes | 27 No |
Post New Answer View All Answers
What are the attributes of the cursor?
Is oracle an open source?
What is ceil and floor in oracle?
What is oracle thin client?
what is difference between sql plus and sql*plus? (not sql and sql plus).
How i can handle exception in large code like 1000 line without distrubing the code or without exception handler sction?
does the query needs a hint to access a materialized view?
What is dual table oracle?
What is merge in oracle?
What is the difference between substr & instr functions?
How to get execution statistics reports on query statements?
How to define an anonymous procedure with variables?
How a tablespace is related to data files?
What is a private synonym?
How to filter out duplications in the returning rows using oracle?