SUM and COUNT - SQLZOO World Country Profile: Aggregate functions This tutorial is about aggregate functions such as COUNT, SUM and AVG. An aggregate function takes many values and delivers just one value. For example the function SUM would aggregate the values 2, 4 and 5 to del sqlzoo.net #1 Total world population SUM 함수 사용 SELECT SUM(population) FROM world #2 List of continents DISTINCT 중복을 제거..