I am creating a project for employee skill set where the table is SkillRepo
with columns:
EmpID, EmpName, SkillName, SkillProficiency, SkillCategory, Experience, Comments
My question is that one user may have many skills. So if I make the EmpID
as primary key, then how can I add other skills for same user in the same table? I think normalization would be needed here, but I can't figure out how?
One table for emp
on for emp_skill