diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1999-05-12 07:34:02 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1999-05-12 07:34:02 +0000 |
commit | 6a982fc6a78dca82d88520cbb1a2a23f981936ce (patch) | |
tree | 2fbdeaa8f3ee65c0fb87ea0a6dcd91a8c6082045 | |
parent | 95e3cec621e497902ef711d1ab3fd639c55302ff (diff) | |
download | postgresql-6a982fc6a78dca82d88520cbb1a2a23f981936ce.tar.gz postgresql-6a982fc6a78dca82d88520cbb1a2a23f981936ce.zip |
Minor wording change.
-rw-r--r-- | doc/src/sgml/ref/select.sgml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/select.sgml b/doc/src/sgml/ref/select.sgml index 6a1373b8bbf..9b49285b497 100644 --- a/doc/src/sgml/ref/select.sgml +++ b/doc/src/sgml/ref/select.sgml @@ -85,9 +85,10 @@ SELECT [ALL|DISTINCT [ON <replaceable class="PARAMETER">column</replaceable>] ] If the INTO TABLE clause is specified, the result of the query will be stored in another table with the indicated name. - The <replaceable class="PARAMETER">new_table</replaceable> will - be created automatically and should not exist before this command. - Refer to <command>SELECT INTO</command> for more information. + The target table (<replaceable class="PARAMETER">new_table</replaceable>) will + be created automatically and should not exist before this command. + Refer to <command>SELECT INTO</command> for more information. + <note> <para> The <command>CREATE TABLE AS</command> statement will also |