SELECT activity_name AS 'Activity', child_gender AS 'Gender',
COUNT(*) AS 'Total'
FROM Child C, Child_Activities D, Activity A
WHERE D.child_id=C.child_id
AND D.activity_id=A.activity_id
GROUP BY A.activity_id, child_Gender;
Missing gender in group by: mySQL requires it otherwise it assumes you don't care about the gender and randomly selects one.
See this article for more info
and this article too
Specifically from the 2nd article: You can use this feature to get better performance by avoiding unnecessary column sorting and grouping. However, this is useful primarily when all values in each nonaggregated column not named in the GROUP BY are the same for each group. The server is free to choose any value from each group, so unless they are the same, the values chosen are indeterminate. Furthermore, the selection of values from each group cannot be influenced by adding an ORDER BY clause. Sorting of the result set occurs after values have been chosen, and ORDER BY does not affect which values the server chooses.