https://school.programmers.co.kr/learn/courses/30/lessons/59408
SELECT COUNT(DISTINCT NAME) AS count FROM ANIMAL_INS;
중복을 제외하고 COUNT하기 위해 DISTINCT를 사용!