I want to get all teams that contain a certain dataset of mitglieder AND all other mitglieder's datasets in those teams.
For Example:
Team A got Anna and Peter mitglieder, Team B got Anna, Maria and Johnny and Team C got Johnny and Mia. If I want to find Anna then the output should look like this:
COUNT isn't important right now.
I tried this code, but this code gives me all datasets of mitglieder.
select teams.name, mitglieder.username, count(eintraege.eintrag_id)
from (eintraege
inner join teams
on eintraege.team = teams.team_id)
right join mitglieder
on eintraege.mitglied = mitglieder.mitglied_id and mitglieder.mitglied_id = 101
group by teams.name, mitglieder.username;
Thanks in advance!!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…