0 votes
in Oracle by
What is COALESCE function in oracle?

1 Answer

0 votes
by
COALESCE function is used to return the value which is set to be not null in the list. If all values in the list are null, then the coalesce function will return NULL.

Coalesce(value1, value2,value3,…)
...