MYSQL] group by, distinct, count 를 이용한 겹치지 않는것의 개수

select name, count(name) from testbl group by name;
select count(distinct name) from testbl