Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

RedHat 6.2

(Zoot)

create_table_as(l)


CREATE_TABLE_AS

CREATE_TABLE_AS

NAME
SYNOPSIS
DESCRIPTION

NAME

CREATE TABLE AS − Creates a new table

SYNOPSIS

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

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.

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

DESCRIPTION

CREATE TABLE AS enables a table to be created from the contents of an existing table. It is functionality equivalent to select_into(l), but with perhaps a more direct syntax.



create_table_as(l)