diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-02-02 23:46:38 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-02-02 23:46:38 +0000 |
commit | c7bceca156cc7ffd744b17669b7839b69eb1c9d3 (patch) | |
tree | 58f7d62d3aa61ac3f6228c2c67f3bb96f2c12983 /doc/src/sgml/ref/execute.sgml | |
parent | 6adb475f77c63eee8ba8b85bf00cd841d57037aa (diff) |
Implement EXPLAIN EXECUTE. By Neil Conway, with some kibitzing from
Tom Lane.
Diffstat (limited to 'doc/src/sgml/ref/execute.sgml')
-rw-r--r-- | doc/src/sgml/ref/execute.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/execute.sgml b/doc/src/sgml/ref/execute.sgml index 2302ef99a32..d62209797b3 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.2 2003/01/19 00:13:29 momjian Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/execute.sgml,v 1.3 2003/02/02 23:46:37 tgl Exp $ PostgreSQL documentation --> @@ -99,9 +99,9 @@ PostgreSQL documentation <para> Like <command>SELECT INTO</command>, <command>EXECUTE</command> can - be used to store the results of executing the query in a table by - specifying an INTO clause. For more information on this behabior, - consult the reference for <xref linkend="sql-selectinto">. + store the results of executing the query into a newly-created + table, by specifying an INTO clause. For more information on this behavior, + see <xref linkend="sql-selectinto" endterm="sql-selectinto-title">. </para> <para> |