Solutionunvalidated
Other than `coalesce(col1, 0) + coalesce(col2, 0)` — do null safe addition. Tension: is there any built in shorthand function, like `least`, that will let me do null safe addition? Outcome: There is nothing built in, but you can create your own:.
656e7b87-10a3-4363-91a5-5b1d8c81eb30
Other than coalesce(col1, 0) + coalesce(col2, 0) — do null safe addition. Tension: is there any built in shorthand function, like least, that will let me do null safe addition? Outcome: There is nothing built in, but you can create your own:.