Pattycake245
Programmer
I am trying to do a join which will summarize the number of times each employee has met with a supervisor. I also want to show those supervisors who have not met with a particular employee as having counts of 0. Something like this:
emp supr
bob frank
bob jim
bob frank
fern frank
fern mike
fern mike
So in summarizing, it would look like this:
emp supr cnt
bob frank 2
bob jim 1
bob mike 0
fern frank 1
fern jim 0
fern mike 2
I thought of making a table with all the supervisors and joining on that but I still can't get the records to show where the employee has not met with a supervisor.
Tim
emp supr
bob frank
bob jim
bob frank
fern frank
fern mike
fern mike
So in summarizing, it would look like this:
emp supr cnt
bob frank 2
bob jim 1
bob mike 0
fern frank 1
fern jim 0
fern mike 2
I thought of making a table with all the supervisors and joining on that but I still can't get the records to show where the employee has not met with a supervisor.
Tim