How do you return 1 value per row of the max of several columns:
TableName [Number, Date1, Date1, Date3, Cost]
I need to return something like this: [Number, Most Recent Date, Cost]
Query?
|
How do you return 1 value per row of the max of several columns: TableName [Number, Date1, Date1, Date3, Cost] I need to return something like this: [Number, Most Recent Date, Cost] Query? |
||||
|
|
|
Well, you can use the CASE statement:
|
|||||||||
|
|
Here is another nice solution for the
|
|||||||||||||||||
|
|
There are 3 more methods where UNPIVOT (1) is the fastest by far, followed by Simulated Unpivot (3) which is much slowe than (1) but still faster than (3)
Solution 1 (UNPIVOT)
Solution 2 (Sub query per row)
Solution 3 (Simulated UNPIVOT)
|
|||||||
|
|
|
If you're using MySQL, you can use
|
|||
|
Either of the two samples below will work:
The second is an add-on to lassevk's answer.
|
||||
|
|
Scalar Function cause all sorts of performance issues, so its better to wrap the logic into an Inline Table Valued Function if possible. This is the function I used to replace some User Defined Functions which selected the Min/Max dates from a list of upto ten dates. When tested on my dataset of 1 Million rows the Scalar Function took over 15 minutes before I killed the query the Inline TVF took 1 minute which is the same amount of time as selecting the resultset into a temporary table. To use this call the function from either a subquery in the the SELECT or a CROSS APPLY.
|
|||||
|
|
Problem: choose the minimum rate value given to an entity Requirements: Agency rates can be null
Inspired by this answer from Nat |
||||
|
|
|
If you are using SQL Server 2005, you can use the UNPIVOT feature. Here is a complete example:
|
|||||||
|
This is slightly easier to write out and skips evaluation steps as the case statement is evaluated in order. |
|||
|
|
|||
|
|
|
You could create a function where you pass the dates and then add the function to the select statement like below. select Number, dbo.fxMost_Recent_Date(Date1,Date2,Date3), Cost
( @Date1 smalldatetime, @Date2 smalldatetime, @Date3 smalldatetime ) RETURNS smalldatetime AS BEGIN DECLARE @Result smalldatetime
END |
|||
|
|
|
Unfortunately Lasse's answer, though seemingly obvious, has a crucial flaw. It cannot handle NULL values. Any single NULL value results in Date1 being returned. Unfortunately any attempt to fix that problem tends to get extremely messy and doesn't scale to 4 or more values very nicely. databyss's first answer looked (and is) good. However, it wasn't clear whether the answer would easily extrapolate to 3 values from a multi-table join instead of the simpler 3 values from a single table. I wanted to avoid turning such a query into a sub-query just to get the max of 3 columns, also I was pretty sure databyss's excellent idea could be cleaned up a bit. So without further ado, here's my solution (derived from databyss's idea).
|
||||
|
|
|
Based on the ScottPletcher's solution from http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_24204894.html I’ve created a set of functions (e.g. GetMaxOfDates3 , GetMaxOfDates13 )to find max of up to 13 Date values using UNION ALL. See T-SQL function to Get Maximum of values from the same row However I haven't considered UNPIVOT solution at the time of writing these functions |
||||
|
|