프로그래머스
문제 LV2 고양이와 개는 몇 마리 있을까.oracle
select ANIMAL_TYPE , count (ANIMAL_TYPE) as count
from animal_ins
group by animal_type
order by animal_type asc;
https://school.programmers.co.kr/learn/courses/30/lessons/59040
'프로그래머스 > SQL' 카테고리의 다른 글
[프로그래머스] 루시와 엘라 찾기.oracle (0) | 2022.10.04 |
---|---|
[프로그래머스] 입양시각 구하기(1).oracle (*서브쿼리)(날짜 및 시간 형식 변환) (0) | 2022.10.04 |
[프로그래머스] 중성화 여부 파악하기.oracle (CASE WHEN) (0) | 2022.10.01 |
[프로그래머스] DATETIME에서 DATE로 형 변환.oracle (0) | 2022.10.01 |
[프로그래머스] NULL 처리하기.oracle (0) | 2022.10.01 |