Hi all,
ich muss den Thread noch einmal reaktivieren. Mir ist aufgefallen, das in der Ergebnismenge nicht alle Teams aus der TeamTabelle auftauchen. Drei fehlen. Allerdings sehe ich nicht woran das liegen kann
Nehme ich die zeitliche Einschränkung raus, sind alle Teams dabei. Etwas weiter oben habe ich den
DB Aufbau angehängt.
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
where
((i.CreationDate >= '03.03.2008 00:00:00')
and (i.CreationDate < '09.03.2008 00:00:00')) or (i.CreationDate is null)
group by t.name
order by t.name
Thanx Marcus