문제링크 : https://programmers.co.kr/learn/courses/30/lessons/59412
문제 설명
09:00부터 19:59까지, 각 시간대별로 입양이 몇 건이나 발생했는지 조회하는 SQL문. 이때, 결과는 시간대 순으로 정렬
코드
1
2
3
4
5
|
SELECT hour(datetime) as hour,count(datetime) as count
from animal_outs
where hour(datetime ) between 9 and 20
group by hour(datetime)
order by hour(datetime)
|
cs |
'MySQL' 카테고리의 다른 글
[MySQL] 프로그래머스 - 이름이 있는 동물의 아이디 (0) | 2020.06.16 |
---|---|
[MySQL] 프로그래머스 - 입양 시각 구하기(2) (0) | 2020.06.15 |
[MySQL] 프로그래머스 - 동명 동물 수 찾기 (0) | 2020.06.15 |
[MySQL] 프로그래머스 - 고양이와 개는 몇 마리 있을까 (0) | 2020.06.15 |
[MySQL] 프로그래머스 - 중복 제거하기 (0) | 2020.06.15 |