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 are all the ddl commands?
How do you change a value in sql?
Explain cursor types?
how can we repair a mysql table? : Sql dba
What is the difference between microsoft access and sql?
Are views faster than queries?
How do I kill a query in postgresql?
Can there be 2 primary keys in a table?
how to delete duplicate rows from a join tables(I have three tables on that join) how do you know which join is need to be used? The select statement I have is: SELECT gc_skill_type.skill_type, gc_area_tec.area, gc_technology.technology, gc_technology.id_technology, gc_area_tec.id_area_tec FROM gc_skill_type, gc_area_tec, gc_technology WHERE gc_area_tec.id_skill_type (+) = gc_skill_type.id_skill_type AND gc_technology.id_area_tec (+) = gc_area_tec.id_area_tec order by gc_skill_type.skill_type asc, gc_area_tec.area asc, gc_technology.technology asc
What are pl sql procedures?
What operating systems are supported by oracle sql developer?
How do you delete duplicates in sql query using rowid?
Can we delete column in sql?
What is the non-clustered index in sql?
How to return an array from java to pl/sql?