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