mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 21:19:59 +00:00
8 lines
189 B
SQL
8 lines
189 B
SQL
CREATE TABLE `dupe_key` (
|
|
`a` int(11) default NULL,
|
|
`b` int(11) default NULL,
|
|
`c` int(11) default NULL,
|
|
KEY `a_2` (`a`,`b`),
|
|
KEY `a` (`a`),
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|