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
12 lines
248 B
SQL
12 lines
248 B
SQL
drop table if exists supplier;
|
|
|
|
create table supplier (
|
|
s_suppkey int,
|
|
s_name char (25),
|
|
s_address varchar (25),
|
|
s_city char (10),
|
|
s_nation char (15),
|
|
s_region char (12),
|
|
s_phone char (15)
|
|
);
|