You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-05 15:41:14 +03:00
8 lines
164 B
SQL
8 lines
164 B
SQL
-- decimal with both scale and precision
|
|
CREATE TABLE VTABLE
|
|
(COL1 INTEGER,
|
|
COL2 INTEGER,
|
|
COL3 INTEGER,
|
|
COL4 INTEGER,
|
|
COL5 DECIMAL(7,2));
|