mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 21:19:59 +00:00
8 lines
242 B
SQL
8 lines
242 B
SQL
use test;
|
|
|
|
-- This test moves rows to different tables depending on the value of a
|
|
-- column.
|
|
drop table if exists table_13, table_odd, table_even;
|
|
create table table_13(a int not null primary key);
|
|
insert into table_13(a) values(1),(2),(3);
|