projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8226f50
)
Avoid ambiguity, as per suggestion from Peter Stricker.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Mon, 30 Aug 2004 21:29:12 +0000
(21:29 +0000)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Mon, 30 Aug 2004 21:29:12 +0000
(21:29 +0000)
doc/src/sgml/query.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/query.sgml
b/doc/src/sgml/query.sgml
index 7e7ad49492d672ab40ce4c0b32f5dc7dc6576c60..245284346d5f7bba71a85b0728179b4923c3eb93 100644
(file)
--- a/
doc/src/sgml/query.sgml
+++ b/
doc/src/sgml/query.sgml
@@
-1,5
+1,5
@@
<!--
-$PostgreSQL: pgsql/doc/src/sgml/query.sgml,v 1.3
8 2004/08/30 21:25:27
tgl Exp $
+$PostgreSQL: pgsql/doc/src/sgml/query.sgml,v 1.3
9 2004/08/30 21:29:12
tgl Exp $
-->
<chapter id="tutorial-sql">
@@
-329,7
+329,7
@@
SELECT city, (temp_hi+temp_lo)/2 AS temp_avg, date FROM weather;
(3 rows)
</screen>
Notice how the <literal>AS</literal> clause is used to relabel the
- output column. (
It
is optional.)
+ output column. (
The <literal>AS</literal> clause
is optional.)
</para>
<para>