Thursday, May 3, 2018

How to get the max of two values in MySQL?

You can use GREATEST function with not nullable fields.
If one of this values (or both) can be NULL, don't use it (result can be NULL).



select 
if(
fieldA is NULL,
if(fieldB is NULL, NULL, fieldB), /* second NULL is default value */
if(fieldB is NULL, field A, GREATEST(fieldA, fieldB))
) as maxValue



You can change NULL to your preferred default value (if both values is NULL).

No comments:

Post a Comment

plot explanation - Why did Peaches' mom hang on the tree? - Movies & TV

In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...