mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 13:40:07 +00:00
8 lines
204 B
SQL
8 lines
204 B
SQL
CREATE TABLE `t` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`a` varchar(200) DEFAULT NULL,
|
|
`b` decimal(22,0) NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `b` (`b`,`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1
|