Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
#1452- 无法添加或更新子行:外键约束失败 ( schoolzone., CONSTRAINT #sql-10e0_7f2_ibfk_1FOREIGN KEY ( teacherid) REFERENCES teacher( teacherid))
#1452
schoolzone
#sql-10e0_7f2_ibfk_1
teacherid
teacher
您收到错误的原因是因为您在 table 上插入了一条记录schoolZone,其列的值在 tableteacherid上不存在teacher。请记住,您插入记录的表取决于 table teacher。
schoolZone
下面是一个示例,显示了您如何获得错误。