What is the simplest SQL query to find the second largest integer value in a specific column? Of course there may be duplicate values in the column.
|
feedback
|
| |||
|
feedback
|
|
In T-Sql there are two ways:
In Microsoft SQL the first way is twice as fast as the second, even if the column in question is clustered. This is because the sort operation is relatively slow compared to the table or index scan that the Alternatively, in Microsoft SQL 2005 and above you can use the
| ||||
|
feedback
|
|
I suppose you can do something like:
or
depending on your database server. Hint: SQL Server doesn't do LIMIT. | |||
|
feedback
|
|
The easiest would be to get the second value from this result set in the application:
But if you must select the second value using SQL, how about:
| |||||
feedback
|
|
I see both some SQL Server specific and some MySQL specific solutions here, so you might want to clarify which database you need. Though if I had to guess I'd say SQL Server since this is trivial in MySQL. I also some solutions that won't work because they fail to take into account the possibility for duplicates, so be careful which ones you accept. Finally, I see a few that will work but that will make two complete scans of the table. You want to make sure the 2nd scan is only looking at 2 values. SQL Server:
MySQL:
| ||||
|
feedback
|
|
Something like this? I haven't tested it, though:
| |||
|
feedback
|
|
See http://stackoverflow.com/questions/16568. Sybase SQL Anywhere supports:
| |||
|
feedback
|
|
Using a correlated query:
| ||||
|
feedback
|
This query selects the maximum three salaries. If two emp get the same salary this does not affect the query. | ||||
|
feedback
|
| ||||
|
feedback
|
|
This works in MS SQL:
| ||||
|
feedback
|
Note sal is col name | ||||
|
feedback
|
|
Tom, believe this will fail when there is more than one value returned in Slight modification to your query will work -
| ||||
|
feedback
|
subquery returns all values other than the largest. select the max value from the returned list. | ||||
|
feedback
|
| ||||
|
feedback
|