I have two tables:
Person(personID, name, phone, email);
Relation(child_personID, parent_playerID);
The relationship table helps identify children and their parent but to do this the personID from the person table has to be referenced twice as foreign. How exactly would I go about doing this?