select college,count(*) as count from college group by college limit 1;
select college,count(*) as count from college group by college order by count desc limit 1;
select college,count(*) as count from college order by count desc limit 1;
select college,count(*) as count from college group by college order by count limit 1;