L
LMB
Hi,
I have a database with a table of employees.
tblEmployees
numEmployeeID (autonumber) PK
strEmpLastName
We need to keep track of total hours worked in 5 different work areas.
My plan is to add 2 more tables.
tblWorkArea
numWorkAreaID(autonumberPK)
strWorkAreaName
tblAssignments
numAssignmentID(autonumberPK)
numEmployeeID
numWorkAreaID
dttAssignmentDate
numAssignmentHours
Is this right? Employees can work in several areas on the same day. The
point is to keep track of total hours worked in each area so we can assign
them equally when possible.
Thanks,
Linda
I have a database with a table of employees.
tblEmployees
numEmployeeID (autonumber) PK
strEmpLastName
We need to keep track of total hours worked in 5 different work areas.
My plan is to add 2 more tables.
tblWorkArea
numWorkAreaID(autonumberPK)
strWorkAreaName
tblAssignments
numAssignmentID(autonumberPK)
numEmployeeID
numWorkAreaID
dttAssignmentDate
numAssignmentHours
Is this right? Employees can work in several areas on the same day. The
point is to keep track of total hours worked in each area so we can assign
them equally when possible.
Thanks,
Linda