私は3つのテーブルA、B、Cを持っています
Table A (
idA1 int unsigned not null,
idA2 int unsigned not null,
primary key(idA1, idA2)
)
Table B (
idB1 varchar(36) not null,
primary key(idB1)
)
Table C (
idC1 int unsigned not null,
idC2 varchar(36) not null,
idC3 int unsigned not null,
primary key(idC1, idC2, idC3),
foreign key(idC1, idC2) references A(idA1, idA2),
foreign key(idC3) references B(idB1)
)
キー テーブル A に conposit-id を使用していますが、後でマッピング テーブル C の問題に直面しました 次の構造で休止状態のマッピングを行う方法は?