Supposed i have a relational table:
FinalYearProject(supervisor, researchTopic, consultationDay, student)
and the following functional dependencies:
student -> researchTopic
student, researchTopic -> supervisor
researchTopic,supervisor -> consultationDay
From there i determined my minimal superkey is: student
where
student -> researchTopic,supervisor, consultationDay
Is it right for me to say that there is partial dependency as supervisor do not depend solely on student based on the functional dependency:
student, researchTopic -> supervisor
Any help will be greatly appreciated.