DISTSTYLE
Description
Keyword that defines the data distribution style for the whole table.
Click here to navigate to the Amazon Redshift docs page for this syntax.
Grammar Syntax
DISTSTYLE { AUTO | EVEN | KEY | ALL }Sample Source Patterns
Input Code:
CREATE TABLE table1 (
col1 INTEGER
)
DISTSTYLE AUTO;
CREATE TABLE table2 (
col1 INTEGER
)
DISTSTYLE EVEN;
CREATE TABLE table3 (
col1 INTEGER
)
DISTSTYLE KEY
DISTKEY (col1);
CREATE TABLE table4 (
col1 INTEGER
)
DISTSTYLE ALL;Output Code:
Related EWIs
SSC-FDM-RS0001: Option not supported. Data storage is automatically handled by Snowflake.
Last updated
