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?

link|improve this question

feedback

12 Answers

up vote 18 down vote accepted

Well, you can use the CASE statement:

SELECT
    CASE
        WHEN Date1 >= Date2 AND Date1 >= Date3 THEN Date1
        WHEN Date2 >= Date1 AND Date2 >= Date3 THEN Date2
        WHEN Date3 >= Date1 AND Date3 >= Date2 THEN Date3
        ELSE                                        Date1
    END AS MostRecentDate
link|improve this answer
Wouldn't it suffice to use WHEN Date1 > Date2 AND Date1 > Date3 THEN Date1; WHEN Date2 > Date3 THEN Date3; ELSE Date3? – Treb Jun 30 '11 at 15:15
so much to max... – Quandary Nov 8 '11 at 9:32
2  
The obvious answer, but it doesn't work with NULL values, and attempting to fix that gets very messy. – Craig Young Jan 23 at 12:49
feedback

Here is another nice solution for the Max functionality using T-SQL and SQL Server

SELECT [other fields,]
  (SELECT Max(v) 
   FROM (VALUES (date1), (date2), (date3), ...) AS value(v)) as [MaxDate],
FROM [YourTable]
link|improve this answer
3  
SQL version must be >= 2008. – Daniel Sep 14 '11 at 15:23
This does work very well with 2008 and handles NULLs. Very nice solution. – nycdan Feb 13 at 14:40
feedback

If you're using MySQL, you can use

SELECT GREATEST(col1, col2 ...) FROM table
link|improve this answer
8  
tag is sqlserver – Codewerks Dec 1 '08 at 19:34
17  
True, but still a very helpful answer as people find this question in reference to MySQL. – philfreo Aug 30 '10 at 23:20
feedback

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)

create table dates 
(
  number int Primary Key,
  date1 datetime,
  date2 datetime,
  date3 datetime,
  cost int 
)

insert into dates values (1, '1/1/2008', '2/4/2008', '3/1/2008', 10)
insert into dates values (2, '1/2/2008', '2/3/2008', '3/3/2008', 20)
insert into dates values (3, '1/3/2008', '2/2/2008', '3/2/2008', 30)
insert into dates values (4, '1/4/2008', '2/1/2008', '3/4/2008', 40)
go

-- Solution 1 (UNPIVOT)
Select number, Max(dDate) maxDate, cost 
  From dates
       Unpivot (dDate FOR nDate in (Date1, Date2, Date3)) as u
 Group by number, cost 
go

-- Solution 2 (Sub query per row)
Select number,
       (Select Max(dDate) maxDate From (Select d.date1 as dDate Union Select d.date2 Union Select d.date3) a) MaxDate,
       Cost
  From dates d
go

-- Solution 3 (Simulated UNPIVOT)
;With maxD As
( Select number, Max(case rn When 1 Then Date1 When 2 Then date2 Else date3 End) as maxDate
    From  dates a
   Cross Join (Select 1 as rn Union Select 2 Union Select 3) b  
   Group by Number)
Select dates.number,
       maxD.maxDate,
       dates.cost
  From dates
 Inner Join MaxD on dates.number=maxD.number
go

drop table dates
go
link|improve this answer
Nice. I was unaware of the PIVOT and UNPIVOT operators. – Sako73 Sep 7 '11 at 19:30
Any idea which versions of SQL Server support pivot/unpivot? – Craig Young Jan 23 at 12:52
feedback

Either of the two samples below will work:

SELECT  MAX(date_columns) AS max_date
FROM    ( (SELECT   date1 AS date_columns
           FROM     data_table         )
          UNION
          ( SELECT  date2 AS date_columns
            FROM    data_table
          )
          UNION
          ( SELECT  date3 AS date_columns
            FROM    data_table
          )
        ) AS date_query

The second is an add-on to lassevk's answer.

SELECT  MAX(MostRecentDate)
FROM    ( SELECT    CASE WHEN date1 >= date2
                              AND date1 >= date3 THEN date1
                         WHEN date2 >= date1
                              AND date2 >= date3 THEN date2
                         WHEN date3 >= date1
                              AND date3 >= date2 THEN date3
                         ELSE date1
                    END AS MostRecentDate
          FROM      data_table
        ) AS date_query 
link|improve this answer
First answer is good, but can be significantly simplified. Second answer doesn't work with NULL values. Attempting to fix that problem gets very messy. – Craig Young Jan 23 at 12:47
feedback

If you are using SQL Server 2005, you can use the UNPIVOT feature. Here is a complete example:

create table dates 
(
  number int,
  date1 datetime,
  date2 datetime,
  date3 datetime 
)

insert into dates values (1, '1/1/2008', '2/4/2008', '3/1/2008')
insert into dates values (1, '1/2/2008', '2/3/2008', '3/3/2008')
insert into dates values (1, '1/3/2008', '2/2/2008', '3/2/2008')
insert into dates values (1, '1/4/2008', '2/1/2008', '3/4/2008')

select max(dateMaxes)
from (
  select 
    (select max(date1) from dates) date1max, 
    (select max(date2) from dates) date2max,
    (select max(date3) from dates) date3max
) myTable
unpivot (dateMaxes For fieldName In (date1max, date2max, date3max)) as tblPivot

drop table dates
link|improve this answer
I think I like the UNION example better. – Lance Fisher Dec 1 '08 at 19:38
"How do you return ONE VALUE PER ROW of the max of several columns" – Niikola Sep 9 '09 at 6:59
feedback
SELECT 
    CASE 
        WHEN Date1 >= Date2 AND Date1 >= Date3 THEN Date1 
        WHEN Date2 >= Date3 THEN Date2 
        ELSE Date3
    END AS MostRecentDate 

This is slightly easier to write out and skips evaluation steps as the case statement is evaluated in order.

link|improve this answer
Careful. If Date2 is NULL, the answer will be Date3; even if Date1 is bigger. – Craig Young Jan 24 at 8:36
feedback
DECLARE @TableName TABLE (Number INT, Date1 DATETIME, Date2 DATETIME, Date3 DATETIME, Cost MONEY)

INSERT INTO @TableName 
SELECT 1, '20000101', '20010101','20020101',100 UNION ALL
SELECT 2, '20000101', '19900101','19980101',99 

SELECT Number,
       Cost  ,
       (SELECT MAX([Date])
       FROM    (SELECT Date1 AS [Date]
               UNION ALL
               SELECT Date2
               UNION ALL
               SELECT Date3
               )
               D
       )
       [Most Recent Date]
FROM   @TableName
link|improve this answer
feedback

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.

CREATE FUNCTION dbo.Get_Min_Max_Date
(
    @Date1  datetime,
    @Date2  datetime,
    @Date3  datetime,
    @Date4  datetime,
    @Date5  datetime,
    @Date6  datetime,
    @Date7  datetime,
    @Date8  datetime,
    @Date9  datetime,
    @Date10 datetime
)
RETURNS TABLE
AS
RETURN
(
    SELECT      Max(DateValue)  Max_Date,
                Min(DateValue)  Min_Date
    FROM        (
                    VALUES  (@Date1),
                            (@Date2),
                            (@Date3),
                            (@Date4),
                            (@Date5),
                            (@Date6),
                            (@Date7),
                            (@Date8),
                            (@Date9),
                            (@Date10)
                )   AS Dates(DateValue)
)
link|improve this answer
Now why would you want to create a function like that which doesn't work if you want the max of 11 values when you could rather just use Sven's answer: stackoverflow.com/a/6871572/224704 – Craig Young May 17 at 10:41
@CraigYoung this was written before Sven answered, both solutions would need to be altered to handle more columns. The choice is between reusable code and cut and paste coding, as the actual code which does the work is exactly the same. – MartinC May 18 at 14:03
feedback

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).
It uses cross-joins selecting constants to simulate the effect of a multi-table join. The important thing to note is that all the necessary aliases carry through correctly (which is not always the case) and this keeps the pattern quite simple and fairly scalable through additional columns.

DECLARE @v1 INT ,
        @v2 INT ,
        @v3 INT
--SET @v1 = 1 --Comment out SET statements to experiment with 
              --various combinations of NULL values
SET @v2 = 2
SET @v3 = 3

SELECT  ( SELECT    MAX(Vals)
          FROM      ( SELECT    v1 AS Vals
                      UNION
                      SELECT    v2
                      UNION
                      SELECT    v3
                    ) tmp
          WHERE     Vals IS NOT NULL -- This eliminates NULL warning

        ) AS MaxVal
FROM    ( SELECT    @v1 AS v1
        ) t1
        CROSS JOIN ( SELECT @v2 AS v2
                   ) t2
        CROSS JOIN ( SELECT @v3 AS v3
                   ) t3
link|improve this answer
feedback

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

create FUNCTION  fxMost_Recent_Date 

( @Date1 smalldatetime, @Date2 smalldatetime, @Date3 smalldatetime ) RETURNS smalldatetime AS BEGIN DECLARE @Result smalldatetime

declare @MostRecent smalldatetime

set @MostRecent='1/1/1900'

if @Date1>@MostRecent begin set @MostRecent=@Date1 end
if @Date2>@MostRecent begin set @MostRecent=@Date2 end
if @Date3>@MostRecent begin set @MostRecent=@Date3 end
RETURN @MostRecent

END

link|improve this answer
Don't do it this way as performance will be terrible. – Mark Sowul Jun 16 '11 at 16:43
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.