반응형
https://school.programmers.co.kr/learn/courses/30/lessons/151141
불과 몇달전 처음 이 문제를 보고 어떻게풀어?? 했던 기억이 있다.
오늘 이 문제를 오랜만에 마주쳤고, 오늘은 내가 이겼다.
이 문제를 위해선 몇가지 조건이 충족되어야 한다.
1. 트럭
2. 기록별 대여 금액 계산
3. 할인율 계산
4. 금액순, ID순 내림차순
select a.history_id, #timestampdiff(day, start_date, end_date)+1, b.daily_fee,
case
when timestampdiff(day, start_date, end_date)+1 >= 90
then round(b.daily_fee * (1-((select discount_rate from car_rental_company_discount_plan where car_type = '트럭' and duration_type like '90%') / 100)), 0) * (timestampdiff(day, start_date, end_date)+1)
when timestampdiff(day, start_date, end_date)+1 >= 30
then round(b.daily_fee * (1-((select discount_rate from car_rental_company_discount_plan where car_type = '트럭' and duration_type like '30%') / 100)), 0) * (timestampdiff(day, start_date, end_date)+1)
when timestampdiff(day, start_date, end_date)+1 >= 7
then round(b.daily_fee * (1-((select discount_rate from car_rental_company_discount_plan where car_type = '트럭' and duration_type like '7%') / 100)), 0) * (timestampdiff(day, start_date, end_date)+1)
else b.daily_fee * (timestampdiff(day, start_date, end_date)+1) end as FEE
from car_rental_company_rental_history as a
join car_rental_company_car as b on a.car_id = b.car_id
where b.car_type = '트럭'
order by FEE desc, history_id desc;
쿼리문을 보면 굉장히 복잡해보이겠지만 단순하다.
TIMESTAMPDIFF를 이용해 기간을 구하여 CASE ~ WHEN ~ THEN ~ ELSE ~ END 를 구성하였다.
그 다음 각 기간에 맞춰 할인된 금액의 가격을 계산하면 되었다.
대여 금액 * (1 - 할인율/100) * 대여 기간
위의 공식이 그저 쿼리문으로 작성되었을 뿐이다.
지금은 어떻게 풀어냈지만... 트럭이 아닌 모든 차종일때 혹은 다른 추가 조건사항이 붙을 때 효용성이 적은 쿼리문인것 같다.
아직은 실력이 많이 부족하다.
반응형
'DB > MySQL' 카테고리의 다른 글
[프로그래머스] MySQL - 오랜 기간 보호한 동물(2) (0) | 2023.11.24 |
---|---|
[프로그래머스] MySQL - 대여 횟수가 많은 자동차들의 월별 대여 횟수 구하기 (1) | 2023.11.24 |
[Mysql] 프로그래머스 특정 기간동안 대여 가능한 자동차들의 대여비용 구하기 (0) | 2023.09.19 |
[Mysql] 별칭(alias) 정렬 (0) | 2023.09.15 |
[Mysql] 조건문 CASE~ WHEN~ THEN~ 알아보기 (0) | 2023.09.15 |
댓글