mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 13:40:07 +00:00
22 lines
376 B
SQL
22 lines
376 B
SQL
drop database if exists test;
|
|
create database test;
|
|
use test;
|
|
|
|
CREATE TABLE t (
|
|
`No.` varchar(16) NOT NULL DEFAULT '',
|
|
`foo.bar` varchar(16),
|
|
PRIMARY KEY (`No.`)
|
|
) ENGINE=MyISAM;
|
|
|
|
insert into t values
|
|
('one', 'a'),
|
|
('two', 'a'),
|
|
('three', 'a'),
|
|
('four', 'a'),
|
|
('five', 'a'),
|
|
('six', 'a'),
|
|
('seven', 'a'),
|
|
('eight', 'a'),
|
|
('nine', 'a'),
|
|
('ten', 'a');
|