powered by
Returns the first non-NULL value from the given inputs.
.coalesce(x, y)
The first non-NULL value. If `x` is NULL, returns `y`.
First value to check.
Fallback value if `x` is NULL.