You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-17 09:41:06 +03:00
14 lines
426 B
SQL
14 lines
426 B
SQL
drop table if exists orders2;
|
|
|
|
CREATE TABLE `orders2` (
|
|
`o_orderkey` int(11) DEFAULT NULL,
|
|
`o_custkey` int(11) DEFAULT NULL,
|
|
`o_orderstatus` char(1) DEFAULT NULL,
|
|
`o_totalprice` decimal(12,2) DEFAULT NULL,
|
|
`o_orderdate` date DEFAULT NULL,
|
|
`o_orderpriority` char(15) DEFAULT NULL,
|
|
`o_clerk` char(15) DEFAULT NULL,
|
|
`o_shippriority` int(11) DEFAULT NULL,
|
|
`o_comment` varchar(79) DEFAULT NULL
|
|
) ENGINE=InfiniDB;
|