aboutsummaryrefslogtreecommitdiff
path: root/doc/src/sgml/ref/execute.sgml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/sgml/ref/execute.sgml')
-rw-r--r--doc/src/sgml/ref/execute.sgml23
1 files changed, 2 insertions, 21 deletions
diff --git a/doc/src/sgml/ref/execute.sgml b/doc/src/sgml/ref/execute.sgml
index f4b0a062fc8..7704b8ce27b 100644
--- a/doc/src/sgml/ref/execute.sgml
+++ b/doc/src/sgml/ref/execute.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/execute.sgml,v 1.4 2003/04/26 23:56:51 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/execute.sgml,v 1.5 2003/07/01 00:04:31 petere Exp $
PostgreSQL documentation
-->
@@ -16,7 +16,7 @@ PostgreSQL documentation
<refsynopsisdiv>
<synopsis>
-EXECUTE <replaceable class="PARAMETER">plan_name</replaceable> [ (<replaceable class="PARAMETER">parameter</replaceable> [, ...] ) ] [ INTO [ TEMPORARY | TEMP ] <replaceable class="PARAMETER">table</replaceable> ]
+EXECUTE <replaceable class="PARAMETER">plan_name</replaceable> [ (<replaceable class="PARAMETER">parameter</replaceable> [, ...] ) ]
</synopsis>
</refsynopsisdiv>
@@ -41,13 +41,6 @@ EXECUTE <replaceable class="PARAMETER">plan_name</replaceable> [ (<replaceable c
</para>
<para>
- Like <command>SELECT INTO</command>, <command>EXECUTE</command> can
- store the results of executing a query into a newly-created
- table, by specifying an <literal>INTO</> clause. For more information on this behavior,
- see <xref linkend="sql-selectinto" endterm="sql-selectinto-title">.
- </para>
-
- <para>
For more information on the creation and usage of prepared statements,
see <xref linkend="sql-prepare" endterm="sql-prepare-title">.
</para>
@@ -78,18 +71,6 @@ EXECUTE <replaceable class="PARAMETER">plan_name</replaceable> [ (<replaceable c
</para>
</listitem>
</varlistentry>
-
- <varlistentry>
- <term><replaceable class="PARAMETER">table</replaceable></term>
- <listitem>
- <para>
- The name of the table in which to store the results of executing
- the statement (if it is a <command>SELECT</command>). If no
- table is specified, the results are returned to the client (as
- normal).
- </para>
- </listitem>
- </varlistentry>
</variablelist>
</refsect1>