aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pgaccess/lib/help/drop_table.hlp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/pgaccess/lib/help/drop_table.hlp')
-rw-r--r--src/bin/pgaccess/lib/help/drop_table.hlp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/bin/pgaccess/lib/help/drop_table.hlp b/src/bin/pgaccess/lib/help/drop_table.hlp
deleted file mode 100644
index 1f85e538741..00000000000
--- a/src/bin/pgaccess/lib/help/drop_table.hlp
+++ /dev/null
@@ -1,17 +0,0 @@
-.pgaw:Help.f.t insert end "DROP TABLE" {bold} " removes tables and views from the database. Only its owner may destroy a table or view. A table may be emptied of rows, but not destroyed, by using DELETE.
-
-If a table being destroyed has secondary indexes on it, they will be removed first. The removal of just a secondary index will not affect the contents of the underlying table.
-
-" {} "Synopsis" {bold} "
-" {} "
-DROP TABLE table \[, ...\]
-
-" {code} "Usage" {bold} "
-
-To destroy the films and distributors tables:
-
-DROP TABLE films, distributors
-
-" {} "Notes" {bold} "
-
-Refer to CREATE TABLE and ALTER TABLE for information on how to create or modify tables. "