Query to get max and second max in oracle in one query ?

Answer Posted / sumit wadhwa

select distinct(a.colname) from table a where &n=(select
count(distinct(b.colname)) from table b where
a.colname<=b.colname);

from this query u can find out Nth MAX in a one query

eg
select distinct(a.sal) from emp a where &n=(select count
(distinct(b.sal)) from emp b where a.sal<=b.sal);

Is This Answer Correct ?    55 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is data file?

790


Is it possible to split the print reviewer into more than one region ?

2016


What is the difference between "as" and "is" in an oracle stored procedure?

739


How to connect ms access to oracle servers?

719


What are the tools for Oracle ?

792


Difference between pre-select and pre-query

763


How much memory your 10g xe server is using?

798


What are a query and state the different types of queries and their uses?

724


How do I know if oracle is installed on windows?

656


What is rowid and rownum in oracle?

759


What is the use of aggregate functions in oracle?

773


Other than making use of the statspack utility, what would you check when you are monitoring or running a health check on an Oracle 8i or 9i database?

1699


How to convert characters to numbers in oracle?

789


How to run the anonymous block again?

806


How to export data with a field delimiter?

767