mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-12 06:00:14 +00:00
6 lines
151 B
SQL
6 lines
151 B
SQL
use test;
|
|
create table resume (
|
|
i int not null unique key
|
|
) engine=innodb;
|
|
insert into test.resume values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
|