Login
Remember
Register
Ask a Question
What is COALESCE function in oracle?
0
votes
asked
Jan 17, 2024
in
Oracle
by
AdilsonLima
What is COALESCE function in oracle?
oracle-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 17, 2024
by
AdilsonLima
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,…)
...