mirror of
https://github.com/postgres/postgres.git
synced 2026-03-08 00:01:15 -05:00
Change wording for COALESCE docs to use "otherwise".
Per Tom
This commit is contained in:
parent
9d23d7cdaf
commit
3919ad864d
1 changed files with 2 additions and 2 deletions
|
|
@ -10015,8 +10015,8 @@ SELECT ... WHERE CASE WHEN x <> 0 THEN y/x > 1.5 ELSE false END;
|
|||
<programlisting>
|
||||
SELECT COALESCE(description, short_description, '(none)') ...
|
||||
</programlisting>
|
||||
This returns <varname>description</> if it is not null, or
|
||||
<varname>short_description</> if it is not null, or <literal>(none)</>.
|
||||
This returns <varname>description</> if it is not null, otherwise
|
||||
<varname>short_description</> if it is not null, otherwise <literal>(none)</>.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
|
|
|
|||
Loading…
Reference in a new issue