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'데이터베이스 > 문제 풀이' 카테고리의 다른 글
| [프로그래머스][MySQL] NULL 처리하기 (0) | 2026.08.15 |
|---|---|
| [프로그래머스][MySQL] 이름에 el이 들어가는 동물 찾기 (0) | 2026.08.14 |
| [프로그래머스][MySQL] 최솟값 구하기 (0) | 2026.08.02 |
| [프로그래머스][MySQL] 중복 제거하기 (0) | 2026.07.29 |
| [프로그래머스][MySQL] 특정 형질을 가지는 대장균 찾기 (0) | 2026.07.12 |