MySQL:无法创建表

时间:2014-02-22 12:30:10

标签: mysql sql constraints

我尝试使用下面的CREATE TABLE语句在MySQL中创建一个表:

CREATE TABLE `visit` (
  `visit_id` int(11) NOT NULL,
  `site_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`visit_id`),
  CONSTRAINT `FK_visit_site` FOREIGN KEY (`site_id`) REFERENCES `site` (`site_id`),
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

我收到了这个错误:

  

ERROR 1005(HY000):无法创建表'fooschema.visit'(错误号:121)

我使用了SHOW ENGINE INNODB STATUS命令。这是错误消息:

------------------------
LATEST FOREIGN KEY ERROR
------------------------
140222  7:03:17 Error in foreign key constraint creation for table `fooschema`.`visit`.
A foreign key constraint of name `fooschema/FK_visit_site`
already exists. (Note that internally InnoDB adds 'databasename/'
in front of the user-defined constraint name).
Note that InnoDB's FOREIGN KEY system tables store
constraint names as case-insensitive, with the
MySQL standard latin1_swedish_ci collation. If you
create tables or databases whose names differ only in
the character case, then collisions in constraint
names can occur. Workaround: name your constraints
explicitly with unique names.

然后,我使用下面的查询列出所有可用的约束:

select *
from information_schema.table_constraints
where constraint_schema = 'fooschema'

我没有在结果中看到任何名称为“FK_visit_site”的约束。

FK_visit_site约束是表访问的外键约束。我删除了访问表并尝试重新创建它。

有没有办法可以删除这个外键约束,即使它所关联的表不存在?

2 个答案:

答案 0 :(得分:1)

您的外键已经存在,因此请删除已存在的外键或重命名您的第二个键。

 ALTER TABLE `site` DROP FOREIGN KEY `FK_visit_site`;

或重命名为其他新的。

CREATE TABLE `visit` (
 `visit_id` int(11) NOT NULL PRIMARY KEY,
 `site_id` int(11) NOT NULL,
CONSTRAINT `FK_visit_site` FOREIGN KEY (`site_id`) REFERENCES `site` (`site_id`),
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

PRIMARY KEY添加到visit_id行。

注意:

确保site_id表中的site在访问表中具有完全相同的site_id数据类型。

像那样

  `site_id` int(11) DEFAULT NULL  --//in the `site` table 
  

您要耦合的两个键必须具有完全相同的数据类型(INT NOT NULL),甚至是签名

答案 1 :(得分:0)

AFAIK,当您尝试使用已在其他位置使用的名称添加约束时,您将收到此错误。手段,在你的情况下,FK FK_visit_site之前已被使用过。

如果您尝试创建的表包含外键约束,并且您已为该约束提供了自己的名称,请记住它在数据库中必须是唯一的。

您可以运行以下查询以查找相同的

SELECT
  constraint_name,
  table_name
FROM
  information_schema.table_constraints
WHERE
  constraint_type = 'FOREIGN KEY'
  AND table_schema = DATABASE()
ORDER BY
  constraint_name;

取自这里的帖子 http://www.thenoyes.com/littlenoise/?p=81

尝试为您的FK使用其他名称

CREATE TABLE `visit` (
  `visit_id` int(11) NOT NULL,
  `site_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`visit_id`),
  CONSTRAINT `FK_visit_site_New` FOREIGN KEY (`site_id`) 
  REFERENCES `site` (`site_id`),
)