私は3つのテーブルをすべてリンクしたい3つのテーブルを持っています。例: table1 : create table master (sr_no int,int,name text);
table2 : テーブル child1 を作成します (sr_no int、emplno int、last_name テキスト、外部キー (sr_no) は更新カスケードの削除カスケードでマスター (sr_no) を参照します);
table3 : テーブル child2 を作成します (Em int,phone text,foreign key(Em) refernces child1(emplno) on delete cascade on update cascade);
しかし、table3 にデータを挿入すると、その表示 ===> エラー: 外部キーの不一致
問題を教えてください ありがとう