6. 동명 동물 수 찾기--[정답1] count(*) 와 where절 활용시 select name, count(*) as count #count(name) from animal_ins where name is not null group by name #집계함수(컬럼)을 쓰려면 [group by 컬럼]이 꼭 필요! having count(*) >= 2 order by name;-- [정답2] count(name) 활용 시 select name, count(name) as count #count(name)은 null값을 제외하고 카운팅!from animal_ins where name is not null = 2order by name;*WHERE, HAVING 차이https://dy..