I have the following table below and am supposed to convert it to 2NF.

I have an answer to this where I have gone:
SKILLS: Employee, Skill
LOCATION: Employee, Current Work
Location
I have a feeling I’m wrong with this ^above^ though.
Also can someone explain what the differences are between 1NF, 2NF and 3NF. I know 1 comes first and you have to break it all up into smaller tables but would like a really good description to help me understand better. Thanks
In the EmployeeSkill table the primary key would be EmployeeId + LocationId, this gives you the skill they have at that location. Including the SkillName column violates 3NF in this example.
This practice is actually used sometimes in database design (and called “denormalization”) in order to reduce joins to increase performance reading data that is commonly used together.
Ususally this is only done in tables used for reporting.