You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
244 B
13 lines
244 B
3 years ago
|
CREATE TABLE tpch.part
|
||
|
(P_PARTKEY INT,
|
||
|
P_NAME VARCHAR(55),
|
||
|
P_MFGR CHAR(25),
|
||
|
P_BRAND CHAR(10),
|
||
|
P_TYPE VARCHAR(25),
|
||
|
P_SIZE INTEGER,
|
||
|
P_CONTAINER CHAR(10),
|
||
|
P_RETAILPRICE DECIMAL(15,2),
|
||
|
P_COMMENT VARCHAR(23))
|
||
|
WITH (:MEDIUM_STORAGE)
|
||
|
:DISTRIBUTED_BY;
|