반응형
programmers.co.kr/learn/courses/30/lessons/59040
사고 과정
- Group by : column에서 값이 같은 것끼리 묶어준다.
구현(C++)
1
2
3
4
5
|
select a.animal_type, count(a.animal_type)
from animal_ins as a
group by a.animal_type
having a.animal_type like '%Cat' or a.animal_type like '%Dog'
order by a.animal_type
|
cs |
시행착오
반응형
'코딩 공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스][SQL] GROUP BY 3. 입양 시각 구하기 (1) (0) | 2021.03.04 |
---|---|
[프로그래머스][SQL] GROUP BY 2. 동명 동물 수 찾기 (0) | 2021.03.04 |
[프로그래머스][SQL] SUM, MAX, MIN 4. 중복 제거하기 (0) | 2021.03.04 |
[프로그래머스][SQL] SUM, MAX, MIN 3. 동물 수 구하기 (0) | 2021.03.01 |
[프로그래머스][SQL] SUM, MAX, MIN 1. 최댓값 구하기 (0) | 2021.03.01 |