InterviewSolution
Saved Bookmarks
| 1. |
Discuss the syntax and use of the COALESCE function? |
|
Answer» The COALESCE function has the expression COALESCE(exp1, exp2, …. expn) It returns the first non-null expression given in the parameter list. |
|