Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What is COALESCE function in oracle?
Home
Oracle
What is COALESCE function in oracle?
0
votes
asked
Jan 17
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
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,…)
...