| People: | 10 |
| Adresses for people with addresses: | 13 |
| People with adresses: | 9 |
| Addresses of all 10 people: | 14 |
Population test:
select count(*) "count",
count(distinct name_id) "dist"
from name
where name_seriesno = name_now(name_id);
count dist
----- ----
6 6
Numbers should match
If they don't, step through the joins:
Join problems;
Ex: From 6 to 5 after adding join
Ex: 6 and 7: one item counted twice
Correction: