求团队人数 链接:https://leetcode-cn.com/problems/find-the-team-size/ --方法一 --先查询出来每个team_id有多少人 select team_id,count(team_id) as team_size from employee group by team_id; --在通过两个表进行连接进行解题 --答案