select name,count(*) as count from info having count > 2 order by count desc;
select name,count(*) as count from info group by name and count > 2 order by count desc;
select name,count(*) as count from info group by name where count >= 2 order by count desc;
select name,count(*) as count from info group by name having count > 2 order by count desc;