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
300 B
12 lines
300 B
CREATE TABLE tpch.orders
|
|
(O_ORDERKEY BIGINT PRIMARY KEY,
|
|
O_CUSTKEY INT,
|
|
O_ORDERSTATUS CHAR(1),
|
|
O_TOTALPRICE DECIMAL(15,2),
|
|
O_ORDERDATE DATE,
|
|
O_ORDERPRIORITY CHAR(15),
|
|
O_CLERK CHAR(15),
|
|
O_SHIPPRIORITY INTEGER,
|
|
O_COMMENT VARCHAR(79),
|
|
dummy text) WITH "template=replicated,affinity_key=O_ORDERKEY";
|
|
|
|
|