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
286 B
13 lines
286 B
3 years ago
|
CREATE TABLE tpch.orders
|
||
|
(O_ORDERKEY BIGINT primary key,
|
||
|
O_CUSTKEY INT,
|
||
|
O_ORDERSTATUS VARCHAR(1),
|
||
|
O_TOTALPRICE REAL,
|
||
|
O_ORDERDATE TIMESTAMP,
|
||
|
O_ORDERPRIORITY VARCHAR(15),
|
||
|
O_CLERK VARCHAR(15),
|
||
|
O_SHIPPRIORITY INTEGER,
|
||
|
O_COMMENT VARCHAR(79),
|
||
|
dummy text) WITH (number_of_replicas = '0');
|
||
|
|