1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-11 12:42:43 +03:00
Files
mariadb-columnstore-engine/mysql/scripts/create_simple_outer.sql
2016-01-06 14:08:59 -06:00

15 lines
698 B
SQL

drop table if exists j1;
drop table if exists j6;
drop table if exists j11;
drop table if exists j16;
create table j1 (j1_key int)engine=infinidb;
create table j6 (j6_key int)engine=infinidb;
create table j11 (j11_key int)engine=infinidb;
create table j16 (j16_key int)engine=infinidb;
insert into j1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(null);
insert into j6 values (6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(null);
insert into j11 values (11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(null);
insert into j16 values (16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(26),(27),(28),(29),(30),(null);