Hi,
du schummelst
im Original stand ein full-join, und darauf bezog sich meine Anmerkung.
SQL-Code:
select t.name, count(i.issueID) as TotalIssue
from tb_teams t
full join tb_users u on u.fk_teamid = t.teamid
full join tb_issues i on i.fk_userid = u.userid and
(i.CreationDate >= '03.03.2008 00:00:00') and (i.CreationDate < '09.03.2008 00:00:00')
group by t.name
order by t.name
Bei einem left-join hat du natürlich Recht.