Search posts...
select name from athletes where id in (select r.athlete_id from records r join games g on r.game_id = g.id and r.medal is not null and g.year >= 2000 group by r.athlete_id having count(distinct team_id) >= 2) order by 1;
silver