What is an example query to retrieve the first, second and third largest number from a database table using SQL Server?
|
You can sort by your value descendingly and take the top 3.
|
|||
|
|
|
The proposed |
|||
|
|
|
Or if you wanted each result separate, first number :
second number:
third number:
assuming YourVal is unique EDIT : following on from OPs comment to get the nth value, select the TOP 1 that isn't in the TOP (n-1), so fifth can be chosen by:
|
|||||
|
|
Sudhakar, It may be easier to use ROW_NUMBER() or DENSE_RANK() for some of these questions. For example, to find YourVal and other columns from the fifth row in order of YourVal DESC:
If you want all rows with the fifth largest distinct YourVal value, just change ROW_NUMBER() to DENSE_RANK(). One really big advantage to these functions is the fact that you can immediately change a "the nth highest YourVal" query to a "the nth highest YourVal for each otherColumn" query just by adding PARTITION BY otherColumn to the OVER clause. |
|||
|
|
|
In certain DBMS packages the
Now among the salaries selected we need top 3 salaries, for that we write:
This gives top 3 salaries in ascending order. This makes the third largest salary to go to first position. Now we have the final task of printing the 3rd largest number.
This gives the third largest number. For any mistake in the query please let me know. Basically to get the nth largest number we can rewrite the above query as
|
||||
|
|
|
If you have a table called Orders and 3 columns Id, ProductId and Quantity then to retrieve the top 3 highest quantities your query would look like:
or if you just want the quantity column:
|
||||