I have a database for staffing.
I have employee table with positions
department table
positions table
schedule table
I import the schedule from the time clock and I want to run reports from this.
I have
emplyeeid
positionid
departmentid
scheduleid
all primary keys in their table
My emplyee table also lists the position of each emplyee which matches with the positions table to get the descriptions of the positions.
I also have positions in the schedules table.
I am not sure how to map this.
should I map the positions table to the emplyees table then map the emplyee table to schedule
or should I map all tables to schedules.
tblschedules
schedulesid
empname
departmentid
positionid
starttime
endtime
tblDepartment
departmentid
depname
deptabbreviation
tblPosition
positionid
posname
posabbreviation
tblemplyee
emplyeeid
empname
positionid
I am making this to hard but cannot get it. Please help.
Tina
I have employee table with positions
department table
positions table
schedule table
I import the schedule from the time clock and I want to run reports from this.
I have
emplyeeid
positionid
departmentid
scheduleid
all primary keys in their table
My emplyee table also lists the position of each emplyee which matches with the positions table to get the descriptions of the positions.
I also have positions in the schedules table.
I am not sure how to map this.
should I map the positions table to the emplyees table then map the emplyee table to schedule
or should I map all tables to schedules.
tblschedules
schedulesid
empname
departmentid
positionid
starttime
endtime
tblDepartment
departmentid
depname
deptabbreviation
tblPosition
positionid
posname
posabbreviation
tblemplyee
emplyeeid
empname
positionid
I am making this to hard but cannot get it. Please help.
Tina