mirror of
https://github.com/MariaDB/server.git
synced 2025-11-12 10:22:39 +03:00
7 lines
127 B
Plaintext
7 lines
127 B
Plaintext
drop database if exists a;
|
|
create database a;
|
|
use a;
|
|
create table b (c int);
|
|
insert into a.b set a.b.c = '1';
|
|
drop database a;
|