From 5ac3cd0f0c9ad2886169c18a4ca3577f93cffc88 Mon Sep 17 00:00:00 2001 From: "Thomas G. Lockhart" Date: Fri, 18 Dec 1998 16:22:31 +0000 Subject: [PATCH] Include example of Postgres' extended query syntax which allow one to omit the FROM clause. e.g. "SELECT table.*". --- doc/src/sgml/ref/select.sgml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/doc/src/sgml/ref/select.sgml b/doc/src/sgml/ref/select.sgml index a1b0ec4fe3..315447a0be 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 -- GitLab