aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pgaccess/lib/help/drop_view.hlp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/pgaccess/lib/help/drop_view.hlp')
-rw-r--r--src/bin/pgaccess/lib/help/drop_view.hlp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/bin/pgaccess/lib/help/drop_view.hlp b/src/bin/pgaccess/lib/help/drop_view.hlp
new file mode 100644
index 00000000000..0ad481167a9
--- /dev/null
+++ b/src/bin/pgaccess/lib/help/drop_view.hlp
@@ -0,0 +1,17 @@
+.pgaw:Help.f.t insert end "DROP VIEW" {bold} " drops an existing view from the database. To execute this command you must be the owner of the view.
+
+" {} "Synopsis" {bold} "
+
+DROP VIEW view
+
+" {} "Usage" {bold} "
+
+This command will remove the view called kinds:
+
+DROP VIEW kinds;
+
+" {} "Notes" {bold} "
+
+The Postgres DROP TABLE statement also drops views.
+
+Refer to CREATE VIEW for information on how to create views. "