vote up 2 vote down star

Oracle and PostgreSQL both have a function that returns the largest of N values (called GREATEST). This function does not exist in T/SQL. How do I achieve the same result?

The following are the options I have come up with for SQL server (note, they only cover 2 columns, the UDF will have clunky syntax if it is set up to support more than 2 inputs)

create table #t (a int, b int) 

insert #t
select 1,2 union all 
select 3,4 union all
select 5,2

-- option 1 - A case statement
select case when a > b then a else b end
from #t

-- option 2 - A union statement 
select a from #t where a >= b 
union all 
select b from #t where b > a 

-- option 3 - A udf
create function dbo.GREATEST
( 
    @a as sql_variant,
    @b as sql_variant
)
returns sql_variant
begin   
    declare @max sql_variant 
    if @b > @a return @b  
    return @a 
end


select dbo.GREATEST(a,b)
from #t

Let me know if you can think of any other ways to achieve this, so I can roll them up into my question.

Edit: Closed this cause its a duplicate.

flag

How does GREATEST is supposed to handle NULLs? It seems to me that with the 3 valued logic (true,false,unknown) it should return NULL (unknown) whenever any of the values is NULL. It was actually pointed out to me be Mark Brackett when I provided answer to a very similar question – kristof Oct 13 '08 at 8:11
Fair point, will amend my answer on the original question – Sam Saffron Oct 13 '08 at 11:24

closed as exact duplicate by Sam Saffron Oct 13 '08 at 8:35

3 Answers

vote up 0 vote down

If one of the arguments in NULL, I would return NULL

create function dbo.GREATEST
( 
    @a as sql_variant,
    @b as sql_variant
)
returns sql_variant
begin   
    if @b >= @a 
      return @b  
    if @b < @a
      return @a 

    return null
end

How does the GREATEST handle nulls in Oracle and PostgreSQL? (I work mostly with MSSQL)

There was a similar question here

link|flag
vote up 0 vote down

Case statements will probably be the fastest, but get increadibly unwieldly (as in the example in ΤΖΩΤΖΙΟΥ's link. And bad luck with a function, as it needs to be called for every single row (lots of overhead.)

You could do something smarter by with SQL 2005+ by unpivoting the columns to be compared and then using the MAX function. For example:

create table #t (id int IDENTITY(1,1), a int, b int)
insert #t
select 1,2 union all
select 3,4 union all
select 5,2

select id, max(val)
from #t
    unpivot (val for col in (a, b)) as unpvt
group by id

Note that you'll need a primary key on your table (I added an identity column), but it's far simpler to maintain the columns to be compared than any of the options in the posted question. Just add/remove columns from the list in the unpivot operator clause.

Update

I've run the three examples (CASE, UDF and UNPIVOT) against 1 million unsorted rows, and surprisingly found they were quite comparable.

  • CASE = 26 seconds
  • UDF = 23 seconds
  • UNPIVOT = 25 seconds

I suspect that the UDF will fall behind as the number of rows increases, due to the overhead of the function calls, but the fact that it is precompiled might continue to give it the edge. Unpivot will be the fatest and easiest to manage when comparing more than two elements, but for two elements I'd say a User Defined Function is your best choice.

link|flag
I will profile, all 4 approaches and post some results later on ... my gut is telling me the case statement will be fastest followed closely by the udf. – Sam Saffron Oct 12 '08 at 23:44
See my test results in the updated answer. – Rick Oct 24 '08 at 4:00
vote up 0 vote down

This suggests that a solution like yours is the only one available.

link|flag

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