COALESCE(expr1, expr2, ...., expr_n)
Example:
SELECT COALESCE(NULL,NULL, 1, 2, 'TEST');
Return the first non-null expression in a list:
0 Comments