From 1ac838edba409abe87649c6820a9ee492cb1a1c5 Mon Sep 17 00:00:00 2001 From: "Thomas G. Lockhart" Date: Mon, 14 Jun 1999 07:37:05 +0000 Subject: Minor updates for release. Split reference pages for CREATE TABLE AS and SELECT INTO to allow psgml (the emacs parser) to handle parsing. --- doc/src/sgml/ref/create_table_as.sgml | 117 ++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 doc/src/sgml/ref/create_table_as.sgml (limited to 'doc/src/sgml/ref/create_table_as.sgml') diff --git a/doc/src/sgml/ref/create_table_as.sgml b/doc/src/sgml/ref/create_table_as.sgml new file mode 100644 index 0000000000..01649be762 --- /dev/null +++ b/doc/src/sgml/ref/create_table_as.sgml @@ -0,0 +1,117 @@ + + + + CREATE TABLE AS + + SQL - Language Statements + + + + CREATE TABLE AS + + + Creates a new table + + + + + 1998-09-22 + + +CREATE TABLE table [ (column [, ...] ) ] + AS select_clause + + + + + 1998-09-22 + + + Inputs + + + + + + + table + + + + The name of a new table to be created. + + + + + + + column + + + + The name of a column. Multiple column names can be specified using +a comma-delimited list of column names. + + + + + + + select_clause + + + +A valid query statement. Refer to SELECT for a description of the +allowed syntax. + + + + + + + + + + 1998-09-22 + + + Outputs + + + Refer to CREATE TABLE and SELECT for a summary of possible output + messages. + + + + + + + 1998-09-22 + + + Description + + +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. + + + + + -- cgit v1.2.1