IF
IF(condition_expression, true_expression, false_expression)
IFNULL
Returns the firt expression if it is not null. In case of null, it returns the second argument.
IFNULL(test_if_null, null_value);
>SELECT IFNULL('test', 'it is NULL');
'test'
>SELECT IFNULL(NULL, 'it is NULL');
'it is NULL'