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.
12 lines
238 B
12 lines
238 B
3 years ago
|
CREATE TABLE tpch.customer
|
||
|
(C_CUSTKEY INT,
|
||
|
C_NAME VARCHAR(25),
|
||
|
C_ADDRESS VARCHAR(40),
|
||
|
C_NATIONKEY INTEGER,
|
||
|
C_PHONE CHAR(15),
|
||
|
C_ACCTBAL DECIMAL(15,2),
|
||
|
C_MKTSEGMENT CHAR(10),
|
||
|
C_COMMENT VARCHAR(117))
|
||
|
WITH (:MEDIUM_STORAGE)
|
||
|
:DISTRIBUTED_BY;
|