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
Mon, 30 Aug 2004 21:29:12 +0000
(21:29 +0000)
committer
Tom Lane
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
@@
@@
-329,7
+329,7
@@
SELECT city, (temp_hi+temp_lo)/2 AS temp_avg, date FROM weather;
(3 rows)
Notice how the
AS
clause is used to relabel the
- output column. (
It
is optional.)
+ output column. (
The
AS
clause
is optional.)