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.
