例如,我们有两个表
creators (
creatorid int not null,
title varchar(100) not null,
primary key(creatorid)
);
authors (
creatorid int not null,
titleid int not null,
primary key (creatorid, titleid)
);
好的,请问如何建立关系?我认为 creatorid 必须与第二张表中的 creatorid 相关,但我不知道如何制作它。