error altering table, adding constraint foreign key getting error quot;Cannot add or update a child rowquot;(更改表时出错,添加约束外键获取错误“无法添加或更新子行)
问题描述
mysql> DESCRIBE questions;
+----------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+----------+--------------+------+-----+---------+----------------+
| id | int(255) | NO | PRI | NULL | auto_increment |
| question | varchar(255) | NO | | NULL | |
| type | char(1) | YES | | NULL | |
+----------+--------------+------+-----+---------+----------------+
mysql> DESCRIBE answers;
+--------------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+--------------+--------------+------+-----+---------+----------------+
| id | int(255) | NO | PRI | NULL | auto_increment |
| answer | varchar(255) | NO | | NULL | |
| questionid | int(255) | NO | | NULL | |
| questions_id | int(255) | NO | | NULL | |
+--------------+--------------+------+-----+---------+----------------+
我正在使用这种说法:
ALTER TABLE 答案添加外键(questions_id)参考问题(id);
ALTER TABLE answers ADD FOREIGN KEY(questions_id) REFERENCES questions(id);
但我得到这个错误:
ERROR 1452 (23000):无法添加或更新子行:外键约束失败(surveydb
.#sql-df_32
,CONSTRAINT #sql-df_32_ibfk_1
FOREIGN KEY (questions_id
) REFERENCES questions
(id
)) 到您的 MySQL 服务器版本,以便在附近使用正确的语法第 1 行的描述问题"
ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (
surveydb
.#sql-df_32
, CONSTRAINT#sql-df_32_ibfk_1
FOREIGN KEY (questions_id
) REFERENCESquestions
(id
))to your MySQL server version for the right syntax to use near 'DESCREBE questions' at line 1
推荐答案
answers.questions_id
中至少有一个数据值在 questions.id
中没有出现.
You have at least one data value in answers.questions_id
that does not occur in questions.id
.
这是我的意思的一个例子:
Here's an example of what I mean:
mysql> create table a ( id int primary key);
mysql> create table b ( aid int );
mysql> insert into a values (123);
mysql> insert into b values (123), (456);
mysql> alter table b add foreign key (aid) references a(id);
ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint
fails (`test`.`#sql-3dab_e5c`, CONSTRAINT `#sql-3dab_e5c_ibfk_1` FOREIGN KEY
(`aid`) REFERENCES `a` (`id`))
您可以使用它来确认存在不匹配的值:
You can use this to confirm that there are unmatched values:
SELECT COUNT(*)
FROM answers AS a
LEFT OUTER JOIN questions AS q ON a.questions_id = q.id
WHERE q.id IS NULL
这篇关于更改表时出错,添加约束外键获取错误“无法添加或更新子行"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:更改表时出错,添加约束外键获取错误“无法添加或更新子行"


- 导入具有可变标题的 Excel 文件 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- SQL 临时表问题 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01