我有三个表我想将所有三个表链接在一起。例如:table1:创建主表(sr_no int,int,name text);
table2:创建表child1(sr_no int,emplno int,last_name text,外键(sr_no)在更新级联上删除级联时引用master(sr_no));
table3:创建表child2(Em int,电话文本,外键(Em)在更新级联上删除级联时引用child1(emplno));
但是当将数据插入 table3 时,它的显示 ===> 错误:外键不匹配
请告诉我什么问题谢谢