Here are examples of the 3 tables I’m working with.
Teams
+----+------+
| id | name |
+----+------+
| 1 | abc |
| 2 | def |
| 3 | ghi |
+----+------+
Members
+----+-----------+----------+---------+
| id | firstname | lastname | team_id |
+----+-----------+----------+---------+
| 1 | joe | smith | 1 |
| 2 | jared | robinson | 1 |
| 3 | sarah | cole | 3 |
| 4 | jaci | meyers | 2 |
+----+-----------+----------+---------+
Goals
+----+-----------+
| id | member_id |
+----+-----------+
| 1 | 3 |
| 2 | 2 |
| 3 | 2 |
| 4 | 3 |
| 5 | 1 |
+----+-----------+
And I’m trying to get a query that outputs something like this …
Output
+--------+----------------+-------------+
| t.name | Count(members) | Count(goals)|
+--------+----------------+-------------+
| abc | 2 | 3 |
| def | 1 | 2 |
| ghi | 1 | 0 |
+--------+----------------+-------------+
This is the closest I’ve come, but when I use the group by in the subquery I get “Subquery returns more than 1 row”.
select t.name, count(*),
(select count(*)
from teams t
inner join members m on m.team_id = t.id
group by t.id)
from teams t
inner join members m on m.team_id = t.id
inner join goals g on g.member_id = m.id
group by t.id
Based on my understanding, here is the query that I come up with:
The breakdown of the query:
#1. Get the member ID with its associated goals count (innerQuery)
#2. Get the team id for with the total SUM of the goals (inner_1)
#3. Get total members count per team (inner_2)
#4. RIGHT JOIN inner_1 and inner_2 (since there will be NULL) and use IFNULL to check and replace that 0