mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 13:11:32 +00:00
19 lines
213 B
SQL
19 lines
213 B
SQL
DROP DATABASE IF EXISTS test;
|
|
CREATE DATABASE test;
|
|
USE test;
|
|
CREATE TABLE t (
|
|
i int
|
|
);
|
|
CREATE TABLE `t_` (
|
|
i int
|
|
);
|
|
CREATE TABLE ta (
|
|
i int
|
|
);
|
|
CREATE TABLE `t%` (
|
|
i int
|
|
);
|
|
CREATE TABLE `t%_` (
|
|
i int
|
|
);
|