PGSQL> SELECT COALESCE(NULL, NULL, 'HELLO WORLD');
coalesce
--------
'HELLO WORLD'
PGSQL> SELECT COALESCE(NULL, NULL, 'first non null', null, null, 'second non null');
coalesce
--------
'first non null'
PGSQL> SELECT COALESCE(NULL, NULL, NULL);
coalesce
--------