group by 문을 어떻게 활용할 수 있을지 알아봅시다.
having : where문과 유사하나 group by 와 함꼐 이용
국가코드에 따른 인구의 최댓값, 그리고 해당 도시 이름을출력하되,
select Name, CountryCode, MAX(Population) AS '인구수' from city group by Countrycode having MAX(Population) > 100000 order by MAX(Population) ASC limit 15;
select CountryCode, sum(population) from city group by Countrycode with rollup ;
select CountryCode, Name, sum(Population) from city group by countrycode, Name with rollup;