Consider the following table:

 id    a    b
--------------
 1     5    1
 2     2    3
 3     4    2
 4     3    6
 5     0    1
 6     2    2

I would like to order it by max(a,b) in descending order, so that the result will be:

 id    a    b
--------------
 4     3    6
 1     5    1
 3     4    2
 2     2    3
 6     2    2
 5     0    1

What will be the SQL query to perform such ordering ?

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

Use GREATEST :

SELECT *
FROM table
ORDER BY GREATEST(a, b) DESC
link|improve this answer
Straight to the point! Thanks :) – Misha Moroshko Aug 11 '11 at 7:17
2  
Beware that both values must be not null. Example: select greatest(null,3) returns null. In that case you would have to use coalesce. select greatest(coalesce(null,0),coalesce(null,0)) this returns 0. – nick rulez Aug 11 '11 at 7:28
1  
@nick rulez: ah! mysql... you wonder why one would use it when it is so irrational. Thanks for mentioning it though, +1 – Vincent Savard Aug 11 '11 at 7:30
@Vincent: you're right. I don't understand the reason of this strange behaviour. :) – nick rulez Aug 11 '11 at 7:33
1  
COALESCE can deals with multiple values, whereas IFNULL deals with only two values – Scorpi0 Aug 11 '11 at 8:17
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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