mirror of
https://github.com/MariaDB/server.git
synced 2025-05-10 02:01:19 +03:00
14 lines
303 B
Plaintext
14 lines
303 B
Plaintext
drop database if exists mysqltest;
|
|
create database mysqltest;
|
|
create table mysqltest.t1 (a int primary key, b int) engine=ndb;
|
|
use mysqltest;
|
|
show tables;
|
|
Tables_in_mysqltest
|
|
t1
|
|
drop database mysqltest;
|
|
create database mysqltest;
|
|
use mysqltest;
|
|
show tables;
|
|
Tables_in_mysqltest
|
|
drop database mysqltest;
|