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.
|
CREATE TABLE tpch.customer
|
|
(C_CUSTKEY INTEGER primary key,
|
|
C_NAME VARCHAR(25),
|
|
C_ADDRESS VARCHAR(40),
|
|
C_NATIONKEY INTEGER,
|
|
C_PHONE VARCHAR(15),
|
|
C_ACCTBAL REAL,
|
|
C_MKTSEGMENT VARCHAR(10),
|
|
C_COMMENT VARCHAR(117),
|
|
dummy text) WITH (number_of_replicas = '0');
|
|
|
|
|