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
237 B
13 lines
237 B
3 years ago
|
CREATE TABLE tpch.orders
|
||
|
(O_ORDERKEY BIGINT,
|
||
|
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);
|
||
|
|