P
Paul Digby
I have a query shown below that does not return the right number of
countries. There are 34 Countries, but when the query runs, it only shows
26. I want the country to show, even if it does not meet the criteria,
either 0 or nothing
SELECT F1_Results.Country, Count(F1_Results.Team) AS Total
FROM F1_Countrys INNER JOIN F1_Results ON F1_Countrys.Country =
F1_Results.Country
WHERE (((F1_Results.Pos)='1') AND ((F1_Results.Team)='Ferrari'))
GROUP BY F1_Results.Country
ORDER BY F1_Results.Country;
countries. There are 34 Countries, but when the query runs, it only shows
26. I want the country to show, even if it does not meet the criteria,
either 0 or nothing
SELECT F1_Results.Country, Count(F1_Results.Team) AS Total
FROM F1_Countrys INNER JOIN F1_Results ON F1_Countrys.Country =
F1_Results.Country
WHERE (((F1_Results.Pos)='1') AND ((F1_Results.Team)='Ferrari'))
GROUP BY F1_Results.Country
ORDER BY F1_Results.Country;