S
scubadiver
Anyone designed a db for this purpose?
At the moment I have in my mind the following logic:
For the first two tables in this list, each employee can attend many
training courses.
Each course will come under a general heading ('coursetype') and there will
be many courses ('coursename') for each type. Also, more than one course will
have a supervisor ('trainerInit').
At the moment I have five tables:
tble_employee
EmployeeID (PK)
Fname
Sname
Operations
Workstatus
Dept
SubDept
tble_course
EmployeeID (FK)
CourseType
CourseName (FK)
Trainingdate
I also have three other tables:
tble_crsetype_lkup
Coursetype(PK)
tble_crsename_lkup
Coursetype (FK)
Coursename (FK)
tble_CrseInit_lkup
CourseInit
Coursename (PK) (back to "tble_course" and "tble_crsename_lkup")
This database is in the very first stages of development and these are the
fields I want to have at the moment.
I want to use "tble_crsetype_lkup" and "tble_crsename_lkup" as lookup tables
to insert information into "tble_employee".
When creating a query listing the fields from "tble_employee" and
"tble_course" I also want to list the Supervisors Initials as well.
I hope this can be followed.
Does this sound okay?
At the moment I have in my mind the following logic:
For the first two tables in this list, each employee can attend many
training courses.
Each course will come under a general heading ('coursetype') and there will
be many courses ('coursename') for each type. Also, more than one course will
have a supervisor ('trainerInit').
At the moment I have five tables:
tble_employee
EmployeeID (PK)
Fname
Sname
Operations
Workstatus
Dept
SubDept
tble_course
EmployeeID (FK)
CourseType
CourseName (FK)
Trainingdate
I also have three other tables:
tble_crsetype_lkup
Coursetype(PK)
tble_crsename_lkup
Coursetype (FK)
Coursename (FK)
tble_CrseInit_lkup
CourseInit
Coursename (PK) (back to "tble_course" and "tble_crsename_lkup")
This database is in the very first stages of development and these are the
fields I want to have at the moment.
I want to use "tble_crsetype_lkup" and "tble_crsename_lkup" as lookup tables
to insert information into "tble_employee".
When creating a query listing the fields from "tble_employee" and
"tble_course" I also want to list the Supervisors Initials as well.
I hope this can be followed.
Does this sound okay?