Hi,
I have been tasked with designing a member skills/certifications/education database for my unit with the ability to filter desired skills for rapid deployment. I am not a database guy, so I have been using the internet for research on database concepts. Cross section of tables created so far:
tblMbr:
mbr_ID (key)
first_name
etc...
------------------ tables tracking member skills
tblSkills: a list of skills - Welder, Pipefitter, etc...
skill_ID (key)
skill_name
skill_description
tblExperience: I want to make this a drop-down list in the form
exp_ID (key)
exp_lvl
years_exp
tblMbrSkills: join table with multiple keys (from Access help)
mbr_ID (key)
skill_ID (key)
exp_ID (key)
------------------ tables tracking member certifications
tblCerts: a list of certs. I want to make this an expandable drop-down list
cert_ID (key)
cert_name
tblMbrCerts: join table
mbr_ID (key)
cert_ID (key)
cert_date
------------------ tables tracking member degrees
tblSchool: a list of schools
school_ID (key)
school_name
etc...
tblDegreeType: a list of types - AS, BS, etc...
degree_type_ID (key)
degree_type
tblDegreeMajor: a list of majors - Computer Science, etc...
degree_major_ID (key)
major
tblDegree: join table
degree_ID (key)
degree_type_ID (key)
degree_major_ID (key)
tblMbrDegrees: join table
mbr_ID (key)
degree_ID (key)
school_ID (key)
attended_start
attended_end
I set up the relationships already. Did I conceptually and physically set the join tables up correctly?
Thanks in advance,
-C
I have been tasked with designing a member skills/certifications/education database for my unit with the ability to filter desired skills for rapid deployment. I am not a database guy, so I have been using the internet for research on database concepts. Cross section of tables created so far:
tblMbr:
mbr_ID (key)
first_name
etc...
------------------ tables tracking member skills
tblSkills: a list of skills - Welder, Pipefitter, etc...
skill_ID (key)
skill_name
skill_description
tblExperience: I want to make this a drop-down list in the form
exp_ID (key)
exp_lvl
years_exp
tblMbrSkills: join table with multiple keys (from Access help)
mbr_ID (key)
skill_ID (key)
exp_ID (key)
------------------ tables tracking member certifications
tblCerts: a list of certs. I want to make this an expandable drop-down list
cert_ID (key)
cert_name
tblMbrCerts: join table
mbr_ID (key)
cert_ID (key)
cert_date
------------------ tables tracking member degrees
tblSchool: a list of schools
school_ID (key)
school_name
etc...
tblDegreeType: a list of types - AS, BS, etc...
degree_type_ID (key)
degree_type
tblDegreeMajor: a list of majors - Computer Science, etc...
degree_major_ID (key)
major
tblDegree: join table
degree_ID (key)
degree_type_ID (key)
degree_major_ID (key)
tblMbrDegrees: join table
mbr_ID (key)
degree_ID (key)
school_ID (key)
attended_start
attended_end
I set up the relationships already. Did I conceptually and physically set the join tables up correctly?
Thanks in advance,
-C