Skip to content
Snippets Groups Projects
Commit 26b7c04b authored by Tom Lane's avatar Tom Lane
Browse files

Avoid ambiguity, as per suggestion from Peter Stricker.

parent 8226f503
No related branches found
No related tags found
No related merge requests found
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/query.sgml,v 1.38 2004/08/30 21:25:27 tgl Exp $ $PostgreSQL: pgsql/doc/src/sgml/query.sgml,v 1.39 2004/08/30 21:29:12 tgl Exp $
--> -->
<chapter id="tutorial-sql"> <chapter id="tutorial-sql">
...@@ -329,7 +329,7 @@ SELECT city, (temp_hi+temp_lo)/2 AS temp_avg, date FROM weather; ...@@ -329,7 +329,7 @@ SELECT city, (temp_hi+temp_lo)/2 AS temp_avg, date FROM weather;
(3 rows) (3 rows)
</screen> </screen>
Notice how the <literal>AS</literal> clause is used to relabel the 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>
<para> <para>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment