CREATE TABLE AS

Name

CREATE TABLE AS  --  Creates a new table 新しいテーブルを作成します。

Synopsis

CREATE TABLE table [ (column [, ...] ) ]
     AS select_clause
  

入力

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.

有効な問合せ文です。 使用可能な構文についての記述は SELECT を参照して下さい。

出力

Refer to CREATE TABLE and SELECT for a summary of possible output messages.

出力の候補についての要約は CREATE TABLESELECT を参照して下さい。

説明

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 direct syntax.

CREATE TABLE AS は既に存在するテーブルの 内容から新しいテーブルを作成します。機能は SELECT TABLE INTO と同一ですが、 ことによると、より直接的な構文を持っています。