I have three tables.
Person (id, FirstName, LastName, BirthDate)
Contact (id, contact, type)
PersonContact( Person_id, Contact_id )
As you can see that Person_id is comming from Person table in PersonContact table And Contact_id is comming from Contact table in PersonContact table
I want to write a query that should relate Person_id column of PersonContact table with id column of Person Table as foreign key.
And Contact_id column of PersonContact with id column of Contact table as foreign key