I have an employees table, and I want to track their Operating System preferences. They can have more than one OS preference:
Employee
- ID
- Name
- OS_Prefs_ID
OSTypes
- ID
- OperatingSystemName
- Version
OS_Prefs
- ID
- OSTypes_ID
Is the relationship between Employee and OS_Prefs "one to many" or "many to many"?
I am guessing that Employees (1) to OS_Prefs (many) and for OSTypes and OS_Prefs, it seems that it is OS_Prefs (many) to OSTypes (1). Right?