데이터베이스/문제 풀이
[프로그래머스][MySQL] 동명 동물 수 찾기
수수다
2026. 8. 10. 16:22
https://school.programmers.co.kr/learn/courses/30/lessons/59041
프로그래머스
SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프
programmers.co.kr

select name, count(*) as count
from animal_ins
where name is not null
group by name
having count(*) >= 2
order by name asc