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
Difference between truncate, delete and drop commands?
How many joins can you have in sql?
What is the purpose of a sql?
Explain mutating table error.
write an sql query to find names of employee start with 'a'? : Sql dba
Is sql similar to python?
What is record type in pl sql?
What are the two types of periodical indexes?
What is compiled query?
What is compilation error in pl sql?
Is big data nosql?
What are triggers and its types?
What is oracle sql called?
Cite the differences between execution of triggers and stored procedures?
What is a temporal table?