how to findout the 100th maximum salary

Answer Posted / lince

select T.* from(
select row_number() over (order by salary desc)as rno,salary from table )T
where T.rno=100

Is This Answer Correct ?    0 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is it possible to remove child records without removing master table records...the two having pk,fk relationship?

1000


What is sql query limit?

699


How do I remove all records from a table?

768


What is application trigger?

733


What are the rules to be applied to nulls whilst doing comparisons?

983






What is the difference between cluster and non-cluster index?

806


What are all the different normalization?

744


How to call a javascript function from pl sql?

758


What is an inner join sql?

694


Can you do multiple joins in sql?

728


What is the use of count (*) in sql?

754


What is sqlerrd?

699


What are synonyms in sql?

729


Can we insert in sql function?

772


What is an invalid partition table?

748