So basically, I have 3 tables that have to do with the Languages.
LanguageTable
-LanguageID
-LanguageName
PersonTable
-PersonID
-Info.......
Language_Person_Table
-PersonID
-LanguageID
So i have these 3 tables, with the Language_Person_Table used to link a person to a language. So if for example a person knows say english and spanish, then in the Language_Person_Table their would be 2 records with that PersonID attached to it.
The issue I am having is I cannot figure out how to use the LanguageIDs associated with a PersonID from this Language_Person_Table to then search for what the name of the Language is in the LanguageTable. I know I could just add the LanguageName to the linking table but I feel like that is most likely bad practice because it is redundant. Any help would be greatly appreciated. Cheers!

Report
All responses (
Answers (