Parameter | Type |
---|---|
value | any |
Returns: any
Example
query:
SELECT COALESCE(account, "Unknown")
FROM sales_pipeline
WHERE deal_stage = "In Progress"
results:
Account |
---|
Fasehatice |
Unknown |
Unknown |
Rundofase |
Unknown |
Unknown |
Unknown |
Unknown |
Unknown |
Unknown |
Opentech |
COALESCE
takes any number of arguments and returns the first non-null one.