From: Tom Lane Date: Wed, 30 May 2001 04:32:30 +0000 (+0000) Subject: Correct obsolete example of FROM-less query. X-Git-Tag: REL7_2_BETA1~1160 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d4854f85cbe6c767c5e51a1112cefab17247ba0;p=postgresql Correct obsolete example of FROM-less query. --- diff --git a/doc/src/sgml/ref/select.sgml b/doc/src/sgml/ref/select.sgml index 1106798d4a..4d95b26e03 100644 --- a/doc/src/sgml/ref/select.sgml +++ b/doc/src/sgml/ref/select.sgml @@ -1,5 +1,5 @@ @@ -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: -SELECT distributors.* WHERE name = 'Westward'; +SELECT distributors.* WHERE distributors.name = 'Westward'; did | name -----+----------