vote up 6 vote down star
1

I want to write a query like this:

SELECT o.OrderId, MAX(o.NegotiatedPrice, o.SuggestedPrice) FROM Order o

But this isn't how the MAX function works, right? It is an aggregate function so it expects a single parameter and then returns the MAX of all rows. Does anyone know how to do it my way?

flag

69% accept rate

11 Answers

vote up 5 vote down check

You'd need to make a User-Defined Function if you wanted to have syntax similar to your example, but could you do what you want to do, inline, fairly easily with a CASE statement, as the others have said.

The UDF could be something like this:

create function dbo.HigherArgument(@val1 int, @val2 int)
returns int
as
begin
  if @val1 > @val2
    return @val1
  return @val2
end

....and you would call it like so:

SELECT o.OrderId, dbo.HigherArgument(o.NegotiatedPrice, o.SuggestedPrice) FROM Order o
link|flag
3  
I would support you solution, the only thing I would add is the support for NULL values. If you simply modify the final line: "return @value2" to read as: "return isnull(@val2,@val1)" then if one of the values is null the function will return the not null value, otherwise it will work as normal – kristof Sep 24 '08 at 10:32
1  
What about other data types e.g. would I need to write a HigherIntegerArgument and a HigherDateTimeArgument and a HigherVarcharArgument and a ...? – onedaywhen Jun 10 at 13:27
vote up 0 vote down

Rate me down

link|flag
Fairly sure that's PL-SQL (Oracle); the question is tagged sqlserver suggesting MS SQL Server. T-SQL doesn't have this. – AakashM Jun 10 at 12:57
vote up 5 vote down

Can be done in one line:

SELECT 0.5 * ((@val1 + @val2) + ABS(@val1 - @val2))
link|flag
+1 I believe you have provided the most correct way. "SELECT ((@val1+@val2) + ABS(@val1-@val2))/2 as MAX_OF_TWO" Also remember, "SELECT ((@val1+@val2) - ABS(@val1-@val2))/2 as MIN_OF_TWO". – tom Jun 4 at 20:00
This way will give an overflow error if the sum is greater than can be stored in an int: declare @val1 int declare @val2 int set @val1 = 1500000000 set @val2 = 1500000000 SELECT 0.5 * ((@val1 + @val2) + ABS(@val1 - @val2)) -- => overflow error – AakashM Jun 10 at 13:02
I've never seen that before. Genius. – the-locster Oct 26 at 13:18
vote up 0 vote down

sambo99, could you please update your post to link to my post on that question (I supplied the unpivot, not Kristof.) The comments that went along with the unpivot might also be useful to anyone looking for an answer to this question, and they need to know about the PK requirement.

Cheers,

Rick

link|flag
vote up 0 vote down

Oops, I just posted a dupe of this question...

The answer is, there is no built in function like Oracle's Greatest, but you can achieve a similar result for 2 columns with a UDF, note, the use of sql_variant is quite important here.

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 @a is null or @b is null return null
    if @b > @a return @b  
    return @a 
end


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

kristof

Posted this answer:

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
link|flag
Note: the GREATEST function implementation will match the oracle behavior for 2 params, if any param is null it will return null – Sam Saffron Oct 13 '08 at 11:41
vote up 1 vote down

I would go with the solution provided by kcrumley Just modify it slightly to handle NULLs

create function dbo.HigherArgumentOrNull(@val1 int, @val2 int)
returns int
as
begin
begin
  if @val1 >= @val2
    return @val1
  if @val1 < @val2
    return @val2

 return NULL
end

EDIT Modified after comment from Mark. As he correctly pointed out in 3 valued logic x > NULL or x < NULL should always return NULL. In other words unknown result.

link|flag
Nulls are important. And it's important to handle them consistently. The only proper answer to Is NULL > x is NULL. – Mark Brackett Oct 10 '08 at 0:27
You are right, i will modify my answer to reflect that, thanks for pointing that out – kristof Oct 13 '08 at 7:48
If we pass an int and a NULL then I think it's more common to want the non-null value returned, so the function is acting as a combination of Max(x,y) and ISNULL(x,y). Hence I personally would change the last line to be: return ISNULL(@val1, @val2) - which admittedly is probably what you had to start with :) – the-locster Oct 26 at 14:17
vote up 2 vote down

The other answers are good, but if you have to worry about having NULL values, you may want this variant:

SELECT o.OrderId, 
   CASE WHEN ISNULL(o.NegotiatedPrice, o.SuggestedPrice) > ISNULL(o.SuggestedPrice, o.NegotiatedPrice)
        THEN ISNULL(o.NegotiatedPrice, o.SuggestedPrice)
        ELSE ISNULL(o.SuggestedPrice, o.NegotiatedPrice)
   END
FROM Order o
link|flag
vote up 0 vote down

I probably wouldn't do it this way, as it's less efficient than the already mentioned CASE constructs - unless, perhaps, you had covering indexes for both queries. Either way, it's a useful technique for similar problems:

SELECT OrderId, MAX(Price) as Price FROM (
   SELECT o.OrderId, o.NegotiatedPrice as Price FROM Order o
   UNION ALL
   SELECT o.OrderId, o.SuggestedPrice as Price FROM Order o
) as A
GROUP BY OrderId
link|flag
vote up 0 vote down
SELECT o.OrderID
CASE WHEN o.NegotiatedPrice > o.SuggestedPrice THEN
 o.NegotiatedPrice
ELSE
 o.SuggestedPrice
END AS Price
link|flag
vote up 0 vote down

You can do something like this:

select case when o.NegotiatedPrice > o.SuggestedPrice 
then o.NegotiatedPrice
else o.SuggestedPrice
end
link|flag
vote up 3 vote down

I don't think so. I wanted this the other day. The closest I got was:

SELECT
  o.OrderId,
  CASE WHEN o.NegotiatedPrice > o.SuggestedPrice THEN o.NegotiatedPrice 
     ELSE o.SuggestedPrice
  END
FROM Order o
link|flag

Your Answer

Get an OpenID
or

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