DB
FunctionsType Conversion

coalesce

Returns the first argument that is not NULL, scanning left to right. If all arguments are NULL, returns NULL. Commonly used to provide defaults or to normalize NULLs across multiple sources.

coalesce(…) → Dynamic

Kind · scalar

Returns the first argument that is not NULL, scanning left to right. If all arguments are NULL, returns NULL. Commonly used to provide defaults or to normalize NULLs across multiple sources.

Part of the Type Conversion family.