group by 절을 사용하였고, 두 번 이상 쓰인 조건을 걸기 위해 having 절을 사용하였다.
select name, count(name) from animal_ins group by name having count(name)>1 order by name