I want to find 2nd,3rd..nth maximum value of a column
|
|
You could sort the column into descending format and then just obtain the value from the nth row. |
||
|
|
|
|
You didn't specify which database, on MySQL you can do
Would skip the first 7, and then get you the next ten highest. |
||||
|
|
|
Pure SQL (note: I would recommend using SQL features specific to your DBMS since it will be likely more efficient). This will get you the n+1th largest value (to get smallest, flip the <). If you have duplicates, make it COUNT( DISTINCT VALUE )..
|
||
|
|
|
|
Here's a method for Oracle. This example gets the 9th highest value. Simply replace the 9 with a bind variable containing the position you are looking for.
If you wanted the nth unique value, you would add DISTINCT on the innermost query block. |
||
|
|
|
|
What database? I don't think there is a very good "generic" solution to this problem. |
||
|
|
|
|
In SQL Server, just do:
And then throw away the first value, if you don't need it. |
||
|
|
|
|
Again you may need to fix for your database, but if you want the top 2nd value in a dataset that potentially has the value duplicated, you'll want to do a group as well: SELECT column FROM table WHERE column IS NOT NULL GROUP BY column ORDER BY column DESC LIMIT 5 OFFSET 2; Would skip the first two, and then get you the next seven highest. |
||
|
|
|
|
for SQL 2005:
|
||
|
|
|
|
Another one for Oracle using analytic functions:
|
||
|
|
|
|
Just dug out this question when looking for the answer myself, and this seems to work for SQL Server 2005 (derived from Blorgbeard's solution):
Effectively, that is a |
||
|
|
|
|
Consider the following Employee table with a single column for salary. +------+ | Sal | +------+ | 3500 | | 2500 | | 2500 | | 5500 | | 7500 | +------+ The following query will return the Nth Maximum element.
For eg. when the second maximum value is required,
+------+ | Sal | +------+ | 5500 | +------+ |
||
|
|
|
|
select sal,ename from emp e where 2=(select count(distinct sal) from emp where e.sal<=emp.sal) or 3=(select count(distinct sal) from emp where e.sal<=emp.sal) or 4=(select count(distinct sal) from emp where e.sal<=emp.sal) order by sal desc; |
||
|
|
|
|
Select max(sal) from table t1 where N (select max(sal) from table t2 where t2.sal > t1.sal) To find the Nth max sal. |
||
|
|
