Skewed By
Create table option
Description
Grammar Syntax
skewed_by:
SKEWED BY (col_name, ...)
ON ((col_value, ...), ...)
[STORED AS DIRECTORIES]Sample Source
Hive
CREATE TABLE table1 (
col1 STRING
)
SKEWED BY (COL1)
ON ('test1', 'test2')
STORED AS DIRECTORIES;Snowflake
Known Issues
Related EWIs
Last updated
Was this helpful?