|
1 |
| -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.52 2001/02/18 17:17:17 petere Exp $ --> |
| 1 | +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.53 2001/02/19 00:01:18 tgl Exp $ --> |
2 | 2 |
|
3 | 3 | <chapter id="functions">
|
4 | 4 | <title>Functions and Operators</title>
|
|
10 | 10 | <citetitle>Programmer's Guide</citetitle>. The
|
11 | 11 | <application>psql</application> commands <command>\df</command> and
|
12 | 12 | <command>\do</command> can be used to show the list of all actually
|
13 |
| - availablefunction and operators, respectively. |
| 13 | + availablefunctions and operators, respectively. |
14 | 14 | </para>
|
15 | 15 |
|
16 | 16 | <para>
|
|
86 | 86 | <entry>FALSE</entry>
|
87 | 87 | <entry>NULL</entry>
|
88 | 88 | </row>
|
| 89 | + |
| 90 | + <row> |
| 91 | + <entry>NULL</entry> |
| 92 | + <entry>NULL</entry> |
| 93 | + <entry>NULL</entry> |
| 94 | + <entry>NULL</entry> |
| 95 | + </row> |
89 | 96 | </tbody>
|
90 | 97 | </tgroup>
|
91 | 98 | </informaltable>
|
|
218 | 225 | <literal><replaceable>expression</replaceable> = NULL</literal>
|
219 | 226 | because NULL is not <quote>equal to</quote> NULL. (NULL represents
|
220 | 227 | an unknown value, so it is not known whether two unknown values are
|
221 |
| - equal.) <productname>Postgres</productname>implicitly converts |
222 |
| - <literal>= NULL</literal> clauses to <literal>IS NULL</literal> to |
| 228 | + equal.) <productname>Postgres</productname>presently converts |
| 229 | + <literal>x= NULL</literal> clauses to <literal>xIS NULL</literal> to |
223 | 230 | allow some broken client applications (such as
|
224 | 231 | <productname>Microsoft Access</productname>) to work, but this may
|
225 | 232 | be discontinued in a future release.
|
|
309 | 316 |
|
310 | 317 | <row>
|
311 | 318 | <entry> <literal>!!</literal> </entry>
|
312 |
| - <entry>Factorial (left operator)</entry> |
| 319 | + <entry>Factorial (prefix operator)</entry> |
313 | 320 | <entry>!! 5</entry>
|
314 | 321 | <entry>120</entry>
|
315 | 322 | </row>
|
|