mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 13:40:07 +00:00
8 lines
195 B
SQL
8 lines
195 B
SQL
drop database if exists test2;
|
|
create database test2;
|
|
use test2;
|
|
create table resume2 (
|
|
i int not null unique key
|
|
);
|
|
insert into test2.resume2 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
|