Commit 7d4854f8 authored by Tom Lane's avatar Tom Lane

Correct obsolete example of FROM-less query.

parent aa665d90
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.41 2001/05/27 09:59:28 petere Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.42 2001/05/30 04:32:30 tgl Exp $
Postgres documentation Postgres documentation
--> -->
...@@ -950,7 +950,7 @@ table to do the select from. A less obvious use is to abbreviate a ...@@ -950,7 +950,7 @@ table to do the select from. A less obvious use is to abbreviate a
normal select from one or more tables: normal select from one or more tables:
<programlisting> <programlisting>
SELECT distributors.* WHERE name = 'Westward'; SELECT distributors.* WHERE distributors.name = 'Westward';
did | name did | name
-----+---------- -----+----------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment