how to findout the 100th maximum salary

Answer Posted / aswini

select min(sal) from (select sal from emp order by sal desc) where rownum<=100

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is mutating sql table?

826


What is the function that is used to transfer a pl/sql table log to a database table?

732


What are the types of operators available in sql?

770


How do I turn a list into a table?

690


How to Declare Fixed Length String Value In PL SQL

844






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

3586


What does t sql mean?

704


What is pl/sql table? Why is it used?

741


What are the ddl commands?

719


can sql servers linked to other servers like oracle? : Sql dba

751


What is difference between group by and partition by?

688


How can we debug in PL/SQL?

855


What are the different dcl commands in sql?

763


What are the properties of a transaction?

798


What does bitemporal mean?

763