mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 14:32:34 +01:00
9 lines
190 B
Text
9 lines
190 B
Text
-- source include/testdb_only.inc
|
|
|
|
use INFORMATION_SCHEMA;
|
|
show tables;
|
|
show tables from INFORMATION_SCHEMA like 'T%';
|
|
create database `inf%`;
|
|
use `inf%`;
|
|
show tables;
|
|
drop database `inf%`;
|