summaryrefslogtreecommitdiff
path: root/src/bin/pgaccess/lib/help/create_table_as.hlp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/pgaccess/lib/help/create_table_as.hlp')
-rw-r--r--src/bin/pgaccess/lib/help/create_table_as.hlp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/bin/pgaccess/lib/help/create_table_as.hlp b/src/bin/pgaccess/lib/help/create_table_as.hlp
deleted file mode 100644
index b7de4e19d7..0000000000
--- a/src/bin/pgaccess/lib/help/create_table_as.hlp
+++ /dev/null
@@ -1,20 +0,0 @@
-.pgaw:Help.f.t insert end "CREATE TABLE AS" {bold} " CREATE TABLE AS enables a table to be created from the contents of an existing table. It has functionality equivalent to SELECT TABLE INTO, but with perhaps a more obvious syntax.
-
-" {} "Synopsis" {bold} "
-" {} "
-CREATE TABLE table \[ (column \[, ...\] ) \]
- AS select_clause
-
-" {code} "Inputs" {bold} "
-
-" {} "table" {italic} "
- The name of a new table to be created.
-
-" {} "column" {italic} "
- The name of a column. Multiple column names can be specified using a comma-delimited list of column names.
-
-" {} "select_clause" {italic} "
- A valid query statement. Refer to SELECT for a description of the allowed syntax.
-
-" {} "Outputs" {bold} "
-Refer to CREATE TABLE and SELECT for a summary of possible output messages. "