COALESCE:
*
COALESCE
*
Multiple non null arguments
PGSQL> SELECT COALESCE(NULL, NULL, ‘first non null’, null, null, ‘second non null’);
coalesce
--------
'first non null'