I am trying to create a series of queries in Access that count the number of clients of each ethnicity in each of 77 counties.
Here is SQL code for one of my queries that I'm trying to do this for...
SELECT [ClientsByCounty-Asian].County, [ClientsByCounty-Asian].CountyName, Count([ClientsByCounty-Asian].Asian) AS CountOfAsian
FROM [ClientsByCounty-Asian]
GROUP BY [ClientsByCounty-Asian].County, [ClientsByCounty-Asian].CountyName;
This query returns only 16 of 77 counties. I need it to display all 77 counties even when the result is zero and there are no records.
How can I get it to display the other 61 counties?