1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.90 2002/01/07 02:29:12 petere Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.91 2002/01/20 22:19:55 petere Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -3925,7 +3925,7 @@ SELECT TIMESTAMP 'now';
3925
3925
just sequences) are special single-row tables created with
3926
3926
<command>CREATE SEQUENCE</>. A sequence object is usually used to
3927
3927
generate unique identifiers for rows of a table. The sequence functions
3928
- provide simple, multi-user -safe methods for obtaining successive
3928
+ provide simple, multiuser -safe methods for obtaining successive
3929
3929
sequence values from sequence objects.
3930
3930
</para>
3931
3931
@@ -4367,7 +4367,7 @@ SELECT NULLIF(value, '(none)') ...
4367
4367
<row>
4368
4368
<entry><function>pg_get_userbyid</>(<parameter>userid</parameter>)</entry>
4369
4369
<entry><type>name</></entry>
4370
- <entry>Get user name given sysid </>
4370
+ <entry>Get user name given ID </>
4371
4371
</row>
4372
4372
</tbody>
4373
4373
</tgroup>
4767
4767
4768
4768
<para>
4769
4769
As usual, NULLs in the expressions or subquery rows are combined per
4770
- the normal rules of SQL boolean expressions. Two rows are considered
4770
+ the normal rules of SQL Boolean expressions. Two rows are considered
4771
4771
equal if all their corresponding members are non-null and equal; the rows
4772
4772
are unequal if any corresponding members are non-null and unequal;
4773
4773
otherwise the result of that row comparison is unknown (NULL).
@@ -4856,7 +4856,7 @@ AND
4856
4856
4857
4857
<para>
4858
4858
As usual, NULLs in the expressions or subquery rows are combined per
4859
- the normal rules of SQL boolean expressions. Two rows are considered
4859
+ the normal rules of SQL Boolean expressions. Two rows are considered
4860
4860
equal if all their corresponding members are non-null and equal; the rows
4861
4861
are unequal if any corresponding members are non-null and unequal;
4862
4862
otherwise the result of that row comparison is unknown (NULL).
@@ -4875,7 +4875,7 @@ AND
4875
4875
The right-hand side of this form of <token>ANY</> is a parenthesized
4876
4876
subquery, which must return exactly one column. The left-hand expression
4877
4877
is evaluated and compared to each row of the subquery result using the
4878
- given <replaceable>operator</replaceable>, which must yield a boolean
4878
+ given <replaceable>operator</replaceable>, which must yield a Boolean
4879
4879
result.
4880
4880
The result of <token>ANY</> is TRUE if any true result is obtained.
4881
4881
The result is FALSE if no true result is found (including the special
@@ -4921,7 +4921,7 @@ AND
4921
4921
4922
4922
<para>
4923
4923
As usual, NULLs in the expressions or subquery rows are combined per
4924
- the normal rules of SQL boolean expressions. Two rows are considered
4924
+ the normal rules of SQL Boolean expressions. Two rows are considered
4925
4925
equal if all their corresponding members are non-null and equal; the rows
4926
4926
are unequal if any corresponding members are non-null and unequal;
4927
4927
otherwise the result of that row comparison is unknown (NULL).
@@ -4939,7 +4939,7 @@ AND
4939
4939
The right-hand side of this form of <token>ALL</> is a parenthesized
4940
4940
subquery, which must return exactly one column. The left-hand expression
4941
4941
is evaluated and compared to each row of the subquery result using the
4942
- given <replaceable>operator</replaceable>, which must yield a boolean
4942
+ given <replaceable>operator</replaceable>, which must yield a Boolean
4943
4943
result.
4944
4944
The result of <token>ALL</> is TRUE if all rows yield TRUE
4945
4945
(including the special case where the subquery returns no rows).
@@ -4984,7 +4984,7 @@ AND
4984
4984
4985
4985
<para>
4986
4986
As usual, NULLs in the expressions or subquery rows are combined per
4987
- the normal rules of SQL boolean expressions. Two rows are considered
4987
+ the normal rules of SQL Boolean expressions. Two rows are considered
4988
4988
equal if all their corresponding members are non-null and equal; the rows
4989
4989
are unequal if any corresponding members are non-null and unequal;
4990
4990
otherwise the result of that row comparison is unknown (NULL).
@@ -5014,7 +5014,7 @@ AND
5014
5014
5015
5015
<para>
5016
5016
As usual, NULLs in the expressions or subquery rows are combined per
5017
- the normal rules of SQL boolean expressions. Two rows are considered
5017
+ the normal rules of SQL Boolean expressions. Two rows are considered
5018
5018
equal if all their corresponding members are non-null and equal; the rows
5019
5019
are unequal if any corresponding members are non-null and unequal;
5020
5020
otherwise the result of the row comparison is unknown (NULL).
0 commit comments