SQL 语法错误 (phpMyAdmin)
此 SQL 语句有什么问题:
ALTER TABLE `tbl_issue`
ADD CONSTRAINT `FK_issue_requester`
FOREIGN KEY (`requester_id`) REFERENCES `tbl_user` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT;
我在名为 trackstar_dev 的数据库中有名为 tbl_issue 和 tbl_user 的表。
phpMyAdmin 说:
#1005 - Can't create table 'trackstar_dev.#sql-1a4_9d' (errno: 121) (<a href="server_engines.php?engine=InnoDB&page=Status&token=fdfsdghrw222323hndgsf">Details...</a>)
What's wrong with this SQL statement:
ALTER TABLE `tbl_issue`
ADD CONSTRAINT `FK_issue_requester`
FOREIGN KEY (`requester_id`) REFERENCES `tbl_user` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT;
I have tables called tbl_issue and tbl_user within a database called trackstar_dev.
phpMyAdmin said:
#1005 - Can't create table 'trackstar_dev.#sql-1a4_9d' (errno: 121) (<a href="server_engines.php?engine=InnoDB&page=Status&token=fdfsdghrw222323hndgsf">Details...</a>)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
出现此错误的最常见原因是外键约束与另一个表中的名称相同。外键的名称在数据库中必须是唯一的(不仅仅是在表级别)。您数据库的另一个表中是否有
requester_id
?The most common reason for this error is that the foreign key constraint have the same name as in another table. Foreign keys' names must be unique in the database (not just on table level). Do you have
requester_id
in another table in your database?如果您尝试添加名称已在其他地方使用的
约束
,您将收到此消息,如果您尝试添加名称已在其他地方使用的约束,您将收到此消息在其他地方使用过。改一下就可以了:)you will get this message if you're trying to add a
constraint
with a name that's already used somewhere else, c you will get this message if you're trying to add a constraint with a name that's already used somewhere else . change it and it will be ok :)我也有同样的问题。删除数据库中的所有表,然后使用下面的 SQL 代码重新创建它们。我假设您正在使用 Yii 1.1 和 php 5 进行敏捷 Web 开发中的示例
I had this same problem. Drop all the tables in your database and then use the SQL code below to recreate them. I assume you are following the example in the agile web development with Yii 1.1 and php 5