I have 2 tables :
first one is something like that :
Person
first_name (primary key)
family_name (primary key)
age
[other things..]
second one is :
Doctor
first_name
family_name
specialty
So basically, in the table Person, their can't be 2 Person with the same first_name and family_name. This works well if I both set them on primary key using phpmyadmin.
My problem is that now I want to make it impossible to add a Doctor who is not a Person. I've tried putting a foreign key constraint on doctor.first_name and doctor.family_name, but it obviously doesn't fix my issue.
(Don't ask me to use an id or something, my tables are much more complicated than that and I can't use an id, it has to be a table with composite primary key).