How to find only %th Highest Sal
Answer Posted / ajit
select *
from emp
where sal = ( select max(sal)
from emp
where level = &n
connect by prior sal > sal
group by level);
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is the different between now() and current_date()? : Sql dba
what is the difference between where clause and having clause? : Sql dba
What is the source code of a program?
How do I partition in sql?
What does count (*) mean in sql?
What is Difference Between Unique and Primary Key Constraints?
How to get help at the sql prompt?
How can you save or place your msg in a table?
What is sql performance tuning?
What are the types of join and explain each?
Mention what does plvtab enables you to do when you showthe contents of pl/sql tables?
What is record data type?
What is bulk compiling in pl/sql.?
what are the advantages of mysql in comparison to oracle? : Sql dba
What is composite data type in pl sql?