I'd love to have an IF-null function, that basically replaces NULL values.
And the clunky:
If ( IsNull(<big long expression>), 'default', <big long expression> )
could be replaced with:
IfNull( <big long expression>, 'default')
Just like: https://www.w3schools.com/sql/func_mysql_ifnull.asp