In relationship terms you are looking at the following :
One Job has Many employees (working on it)
One Employee has Many Jobs (that they are working on)
Thus many->many relationship, which means in order to model it you're looking at a:
Code:
employee employeeJobs jobs
one ---- FK -----> many <----- FK ---- one
Using the above you can keep your employees normalised by Primary Key (only ONE of each)
And keep your jobs normalised also (only ONE of each)
Hope that helps you understand what you're doing better.
note : FK = foreign key constraint