github.com/matrixorigin/matrixone@v1.2.0/test/distributed/cases/ddl/create_table_and_database.sql (about)

     1  drop database if exists test01;
     2  create database test01;
     3  drop database if exists test02;
     4  create database test02;
     5  drop database if exists test03;
     6  create database test03;
     7  drop database if exists test04;
     8  create database test04;
     9  drop database if exists test05;
    10  create database test05;
    11  show databases;
    12  
    13  use test01;
    14  drop table if exists test01;
    15  create table test01(col1 int, col2 char);
    16  drop table if exists test02;
    17  create table test02(col1 int, col2 char);
    18  drop table if exists test03;
    19  create table test03(col1 int, col2 char);
    20  drop table if exists test04;
    21  create table test04(col1 int, col2 char);
    22  drop table if exists test05;
    23  create table test05(col1 int, col2 char);
    24  drop table if exists test06;
    25  create table test06(col1 int, col2 char);
    26  show tables;
    27  
    28  drop table test01;
    29  drop table test02;
    30  drop table test03;
    31  drop table test04;
    32  drop table test05;
    33  drop table test06;
    34  drop database test01;
    35  drop database test02;
    36  drop database test03;
    37  drop database test04;
    38  drop database test05;