Returns the first non-null or nonmissing value from a list of character arguments.
| Category: | Character |
| Returned data type: | NCHAR |
specifies any valid expression that evaluates to a character value.
| Data type | NCHAR |
| See | <sql-expression> |
| FedSQL Expressions. |
|
Statements
|
Results
|
|---|---|
select coalescec('', 'Hello'); |
Hello |
select coalescec('', 'Goodbye', 'Hello'); |
Goodbye |