我正在尝试从也具有外键的表中删除多列唯一键。我不断收到“errno 150”,除非我先删除外键。
例如,如果我创建表:
CREATE TABLE `testtable` (
`testtable_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`testtable_value` char(255) DEFAULT NULL,
`othertable_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`testtable_id`),
UNIQUE KEY `tt_unique_key` (`othertable_id`,`testtable_value`),
CONSTRAINT `tt_foreign_key` FOREIGN KEY (`othertable_id`) REFERENCES `othertable` (`othertable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
我尝试像这样删除唯一键:
ALTER TABLE `testtable` DROP KEY `tt_unique_key`;
它会产生错误:
Error Code: 1025
Error on rename of './testdb/#sql-374_27' to './testdb/testtable' (errno: 150)
我尝试设置 FOREIGN_KEY_CHECKS = 0,但我得到了同样的错误:
SET FOREIGN_KEY_CHECKS = 0;
ALTER TABLE `testtable` DROP KEY `tt_unique_key`;
SET FOREIGN_KEY_CHECKS = 1;
这会生成与上面相同的错误消息。
但是,如果我先删除外键,然后删除唯一键,然后重新创建外键,一切正常:
ALTER TABLE `testtable` DROP FOREIGN KEY `tt_foreign_key`;
ALTER TABLE `testtable` DROP KEY `tt_unique_key`;
ALTER TABLE `testtable` ADD CONSTRAINT `tt_foreign_key` FOREIGN KEY (`othertable_id`) REFERENCES `othertable` (`othertable_id`);
这似乎真的很低效。谁能解释发生了什么?有没有办法在不先删除外键的情况下删除唯一键?