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 makes a good primary key?
Write a sql query to convert all character to uppercase after hypen.
What are the different operators available in sql?
How can you fetch common records from two tables?
What is a sql profiler?
How exception is different from error?
How we can create a table in pl/sql block. Insert records into it? Is it possible by some procedure or function? Please give example?
how would you get the current date in mysql? : Sql dba
What is the difference between the sql*loader and import utilities? : aql loader
how to shutdown mysql server? : Sql dba
What is anonymous block in sql?
What is an emotional trigger?
What is meant by truncate in sql?
What is foreign key sql?
What is primary key in db?