coalesce()
coalesce([...args])
returns its first argument that has a non-null value.
Returns
The first argument in args
whose value is not null
. If args
contains only null
values, or is empty, then returns null
.
Examples
Last updated
Was this helpful?