diff options
author | Neil Conway <neilc@samurai.com> | 2006-04-02 03:56:40 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2006-04-02 03:56:40 +0000 |
commit | a619e068d3f8ae5c81877a43e8494a1f77c27571 (patch) | |
tree | b0b31a6e3da901c92d276943f0a8e66fdf2b6243 | |
parent | 0220282266820caa97eb8992cbf5aff13e4c41e6 (diff) | |
download | postgresql-a619e068d3f8ae5c81877a43e8494a1f77c27571.tar.gz postgresql-a619e068d3f8ae5c81877a43e8494a1f77c27571.zip |
Minor improvement to DROP TABLE reference page.
-rw-r--r-- | doc/src/sgml/ref/drop_table.sgml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/drop_table.sgml b/doc/src/sgml/ref/drop_table.sgml index 8e7cedd71d5..a0001f8a8cb 100644 --- a/doc/src/sgml/ref/drop_table.sgml +++ b/doc/src/sgml/ref/drop_table.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/drop_table.sgml,v 1.23 2005/11/19 17:39:44 adunstan Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/drop_table.sgml,v 1.24 2006/04/02 03:56:40 neilc Exp $ PostgreSQL documentation --> @@ -29,8 +29,10 @@ DROP TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> [, .. <para> <command>DROP TABLE</command> removes tables from the database. - Only its owner may destroy a table. To empty a table of rows, - without destroying the table, use <command>DELETE</command>. + Only its owner may destroy a table. To empty a table of rows + without destroying the table, use <xref linkend="sql-delete" + endterm="sql-delete-title"> or <xref linkend="sql-truncate" + endterm="sql-truncate-title">. </para> <para> |