mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-25 05:44:59 +00:00
11 lines
187 B
SQL
11 lines
187 B
SQL
DROP SCHEMA IF EXISTS test;
|
|
CREATE SCHEMA test;
|
|
USE test;
|
|
|
|
CREATE TABLE test(
|
|
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
test INT
|
|
);
|
|
|
|
INSERT INTO test (test) VALUES(1),(2),(3);
|