mirror of
https://github.com/percona/percona-toolkit.git
synced 2026-04-17 01:01:39 +08:00
11 lines
259 B
SQL
11 lines
259 B
SQL
CREATE SCHEMA IF NOT EXISTS test;
|
|
|
|
DROP TABLE IF EXISTS test.t1;
|
|
|
|
CREATE TABLE test.t1 (
|
|
id TINYINT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
|
|
notunique VARCHAR(200) NOT NULL
|
|
);
|
|
|
|
INSERT INTO test.t1(notunique) VALUES('test01'),('test01'),('test02');
|