CREATE TABLE IF NOT EXISTS `descr_torrents` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`torrent` int(10) unsigned NOT NULL,
`typeid` int(10) unsigned NOT NULL,
`value` text NOT NULL,
`checkv` varchar(256) NOT NULL DEFAULT 'u',
PRIMARY KEY (`id`),
KEY `torrent` (`torrent`),
KEY `typeid` (`typeid`)
) ENGINE=MyISAM
Ім'я ключа Тип Унікальне Packed Поле Кількість елементів Порівняння Нуль Comment
torrent BTREE Ні Ні torrent 7361 A
но реально в поле torrent только 6599 уникальных елементов
в чем загвоздка??
как исправить ошибку базы?