adspace
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 current version of postgresql?
Is primary key always clustered index?
how many tables will create when we create table, what are they? : Sql dba
What is the best sql course?
what is schema? : Sql dba
Does group by remove duplicates?
How do I remove duplicates in two columns?
what is collation? : Sql dba
If a cursor is open, how can we find in a pl/sql block?
what are the advantages of sql ? : Sql dba
what is bcp? When does it used? : Sql dba
Can delete statement be rollbacked?
what is sql server agent? : Sql dba
Is primary key clustered index?
What is your daily office routine?