I have two tables (simplified example):
table person
PK data
1 A
2 B
3 C
4 D
table choice
PK FK
1 1
2 1
3 1
4 2
5 2
6 2
I need to count the total number of people that made a choice. Each
person should only be counted once, regardless of how many choices they
have.
Thanks in advance for the help!
table person
PK data
1 A
2 B
3 C
4 D
table choice
PK FK
1 1
2 1
3 1
4 2
5 2
6 2
I need to count the total number of people that made a choice. Each
person should only be counted once, regardless of how many choices they
have.
Thanks in advance for the help!
Comment