From 26b7c04b371674ec08babce7187cd64a00c5cbbc Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 30 Aug 2004 21:29:12 +0000 Subject: [PATCH] Avoid ambiguity, as per suggestion from Peter Stricker. --- doc/src/sgml/query.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/query.sgml b/doc/src/sgml/query.sgml index 7e7ad49492d..245284346d5 100644 --- 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.)