COALESCEexpression
COALESCEexpression refers to the SQL standard function COALESCE, which returns the first non-NULL value from a list of expressions. If all provided expressions are NULL, the result is NULL.
COALESCE(expression1, expression2, ..., expressionN) where N is at least 2. The function evaluates the arguments from left
COALESCE is commonly used to supply default values for missing data or to simplify conditional logic. It
Selecting a contact method with a fallback: SELECT COALESCE(email, phone, 'no contact') FROM users. If email is
COALESCE differs from NVL (Oracle) and ISNULL (some dialects) in that it is part of the ANSI
---