As you will gather by my question, I'm a newbie trying to create a database for my company. We are a contracting firm and have many projects and many employees.
I have an Employee table with each employee and information.
EMPid(pk)
EMPfirstname
EMPlastname
I have a Project table with each project and information.
ProjectID(pk)
ProjectName
SupervisorEMP *Name of Employee supervising project
ManagerEMP *Name of Employee managing project
How can I keep one table of employees and be able to associate two different employees to each project? Some empoyees will supervise and manage a porject. Some employees will supervise on some projects and manage on others. I would like to be able to bring up each employee and see what projects they are supervising and managing.
Thank you in advance for your help!
I have an Employee table with each employee and information.
EMPid(pk)
EMPfirstname
EMPlastname
I have a Project table with each project and information.
ProjectID(pk)
ProjectName
SupervisorEMP *Name of Employee supervising project
ManagerEMP *Name of Employee managing project
How can I keep one table of employees and be able to associate two different employees to each project? Some empoyees will supervise and manage a porject. Some employees will supervise on some projects and manage on others. I would like to be able to bring up each employee and see what projects they are supervising and managing.
Thank you in advance for your help!