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
How do you clear the screen in sql?
Can you inner join the same table?
How does postgresql compare to mysql?
Can we update views in sql?
How many types of sql are there?
What does 0 mean in sql?
What is trigger types of trigger?
What is a database? Explain
explain commit and rollback in mysql : sql dba
What are predefined functions in sql?
What is the difference between the implicit and explicit cursors?
what is the difference between mysql_fetch_object and mysql_fetch_array? : Sql dba
What is a nested table in word?
Why do we use sql constraints? Which constraints we can use while creating database in sql?
What is nosql example?