gimmickbutreal
[프로그래머스/오라클] 대여 횟수가 많은 자동차들의 월별 대여 횟수 구하기 - Oracle 본문
https://school.programmers.co.kr/learn/courses/30/lessons/151139
1
2
3
4
5
6
7
8
9
10
|
select to_char(start_date,'mm') as month,
car_id,
count(car_id) as records
from car_rental_company_rental_history
where to_char(start_date,'mm') between 08 and 10
and car_id in (select car_id from car_rental_company_rental_history
where to_char(START_DATE,'MM') between 08 and 10
group by car_id having count(car_id)>=5)
group by car_id, to_char(start_date,'mm')
order by 1,2 desc
|
cs |
'Algorithm > SQL' 카테고리의 다른 글
[프로그래머스/오라클] 즐겨찾기가 가장 많은 식당 정보 출력하기 - Oracle (0) | 2023.04.20 |
---|---|
[프로그래머스/오라클] 조건에 맞는 사용자와 총 거래금액 조회하기 - Oracle (0) | 2023.04.20 |
[프로그래머스/오라클] 자동차 대여 기록에서 대여중 / 대여 가능 여부 구분하기 - Oracle (0) | 2023.04.20 |
[프로그래머스/오라클] 년, 월, 성별 별 상품 구매 회원 수 구하기 - Oracle (0) | 2023.04.17 |
[프로그래머스/오라클] 식품분류별 가장 비싼 식품의 정보 조회하기 - Oracle (0) | 2023.04.17 |