diff --git a/doc/src/sgml/ref/select.sgml b/doc/src/sgml/ref/select.sgml index a1b0ec4fe33..315447a0bea 100644 --- a/doc/src/sgml/ref/select.sgml +++ b/doc/src/sgml/ref/select.sgml @@ -494,6 +494,27 @@ SELECT actors.name + + 1998-09-24 + + + <acronym>Extensions</acronym> + + + +Postgres allows one to omit +the FROM clause from a query. This feature +was retained from the original PostQuel query language: + +SELECT distributors.* WHERE name = 'Westwood'; + + did|name + ---+---------------- + 108|Westward + + + + 1998-09-24