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