mysql使用外键将int更改为bigint

时间:2012-01-26 12:45:27

标签: mysql foreign-keys int alter bigint

我想将数据库中某些主键列的数据类型从INT更改为BIGINT。以下定义是一个玩具示例来说明问题:

CREATE TABLE IF NOT EXISTS `owner` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `thing_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `thing_id` (`thing_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

DROP TABLE IF EXISTS `thing`;
CREATE TABLE IF NOT EXISTS `thing` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

ALTER TABLE `owner`
  ADD CONSTRAINT `owner_ibfk_1` FOREIGN KEY (`thing_id`) REFERENCES `thing` (`id`);

现在,当我尝试执行以下命令之一时:

ALTER TABLE `thing` CHANGE `id` `id` BIGINT NOT NULL AUTO_INCREMENT;
ALTER TABLE `owner` CHANGE `thing_id` `thing_id` BIGINT NOT NULL;

我遇到了错误

#1025 - Error on rename of './debug/#[temp-name]' to './debug/[tablename]' (errno: 150)

显示INODB状态输出:

LATEST FOREIGN KEY ERROR
------------------------
120126 13:34:03 Error in foreign key constraint of table debug/owner:
there is no index in the table which would contain
the columns as the first columns, or the data types in the
table do not match the ones in the referenced table
or one of the ON ... SET NULL columns is declared NOT NULL. Constraint:
,
 CONSTRAINT "owner_ibfk_1" FOREIGN KEY ("thing_id") REFERENCES "thing" ("id")

我猜测外键定义会阻止更改任一侧的列类型。解决此问题的天真方法是删除外键定义,更改列并重新定义外键。有更好的解决方案吗?

4 个答案:

答案 0 :(得分:7)

即使使用SET foreign_key_checks = 0,也无法更改约束列的类型。 来自MySQL doc:http://dev.mysql.com/doc/refman/5.5/en/innodb-foreign-key-constraints.html

However, even if foreign_key_checks = 0, InnoDB does not permit the creation of a foreign key constraint where a column references a nonmatching column type.

所以,我同意Devart的评论。只需放下它并再次创建它。

答案 1 :(得分:3)

我建议你在GUI工具中重命名这些字段 - dbForge Studio for MySQL(免费试用版):

只需在数据库资源管理器中选择要重命名的字段,单击重构 - >重命名命令,在打开的窗口中输入新名称,然后按确定,它将重命名该字段并自动重新创建所有外键。

答案 2 :(得分:0)

即使您更改了 idthing_id 的列大小,行中的原始数据仍然是 4 字节整数而不是 8 字节整数。但是你可以转换数据。

试试这个解决方案。我最近不得不在一个大型数据集上做类似的事情,当数据集有可能变得过大时,将 INT 列转换为 BIGINT。

ALTER TABLE `owner`
DROP FOREIGN KEY `owner_ibfk_1`;

ALTER TABLE `thing` CHANGE `id` `id` BIGINT NOT NULL AUTO_INCREMENT;
ALTER TABLE `owner` CHANGE `thing_id` `thing_id` BIGINT NOT NULL;

UPDATE `thing` SET `id` = CAST(`id` AS UNSIGNED INTEGER);
UPDATE `owner` SET `thing_id` = CAST(`thing_id` AS UNSIGNED INTEGER);

-- Now the data are BIGINTs; re-create the foreign key constraint

ALTER TABLE `owner`
  ADD CONSTRAINT `owner_ibfk_1` FOREIGN KEY (`thing_id`) REFERENCES `thing` (`id`);

答案 3 :(得分:-1)

我遇到了类似的问题,解决方案是更改条款:

ALTER TABLE table_name CHANGE id id BIGINT(20) NOT NULL AUTO_INCREMENT;

这对我有用。