sql

[프로그래머스] 동명 동물 수 찾기

활시현 2021. 1. 25. 22:20
728x90
728x90

SELECT name, count(*) as count
from animal_ins
where name is not null
group by name
having count > 1
order by name