Hello,
I have one table with certification data:
cer ID, cer sub 3, cer sub 2, cer sub 1, cer name
for the combination cer sub 3 & cer sub 2 & cer sub 1 there are multiple certifications names for example:
cer sub 3, cer sub 2, cer sub 1, certification name 1
cer sub 3, cer sub 2, cer sub 1, certification name 2
cer sub 3, cer sub 2, cer sub 1, certification name 3
I have second table with employees certifications:
emp Id, cer ID, cer status (enrolled, completed)
I wish to get a list of all employees and their missing registrations.
for each employee that start but did not completed all the certifications for sub 3 & cer sub 2 & cer sub 1 combination include the missing certifications id.
for example:
employees table:
emp1
emp2
emp3
certification table:
a,b,c,name 1
a,b,c name 2
employees certifications:
emp1, a,b,c,name 1,completed
emp1,a,b,c,name 2,completed
emp2,a,b,c,name 1,completed
query result:
emp2,a,b,c,name 2
Thank you for your help
I have one table with certification data:
cer ID, cer sub 3, cer sub 2, cer sub 1, cer name
for the combination cer sub 3 & cer sub 2 & cer sub 1 there are multiple certifications names for example:
cer sub 3, cer sub 2, cer sub 1, certification name 1
cer sub 3, cer sub 2, cer sub 1, certification name 2
cer sub 3, cer sub 2, cer sub 1, certification name 3
I have second table with employees certifications:
emp Id, cer ID, cer status (enrolled, completed)
I wish to get a list of all employees and their missing registrations.
for each employee that start but did not completed all the certifications for sub 3 & cer sub 2 & cer sub 1 combination include the missing certifications id.
for example:
employees table:
emp1
emp2
emp3
certification table:
a,b,c,name 1
a,b,c name 2
employees certifications:
emp1, a,b,c,name 1,completed
emp1,a,b,c,name 2,completed
emp2,a,b,c,name 1,completed
query result:
emp2,a,b,c,name 2
Thank you for your help