mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 13:11:32 +00:00
11 lines
175 B
SQL
11 lines
175 B
SQL
DROP DATABASE IF EXISTS test;
|
|
CREATE DATABASE test;
|
|
USE test;
|
|
|
|
CREATE TABLE t (
|
|
i int unsigned not null,
|
|
v varchar(16),
|
|
t tinyint
|
|
);
|
|
INSERT INTO t VALUES (1,'hi',1);
|