Column-Name-List

Used to rename columns when creating a table or temporary table from a query (CREATE TABLE AS SELECT); also used to specify the column's encoding type and access rank .

Syntax

column-name-list 
... [ ENCODING encoding‑type ] 
... [ ACCESSRANK integer ]
... [ GROUPED ( column‑reference[,…] ) ]

Parameters

column‑name Specifies the new name for the column.
ENCODING encoding‑type

Specifies the type of encoding to use on the column. The default encoding type is AUTO.

ACCESSRANK integer Overrides the default access rank for a column, useful for prioritizing access to a column. See Prioritizing Column Access Speed in the Administrator's Guide.
GROUPED Groups two or more columns . For detailed information, see GROUPED Clause.

Requirements