diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 0b6a109432e..2f307c2b121 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -10015,6 +10015,8 @@ SELECT ... WHERE CASE WHEN x <> 0 THEN y/x > 1.5 ELSE false END; SELECT COALESCE(description, short_description, '(none)') ... + This returns description if it is not null, or + short_description if it is not null, or (none).