프로그래머스 SQL 코딩테스트 연습문제
https://school.programmers.co.kr/learn/challenges?order=recent&languages=mysql
자동차 관련 문제 모음 개인 답안 (MYSQL)
1. 특정 옵션이 포함된 자동차 리스트 구하기
[문제]
CAR_RENTAL_COMPANY_CAR 테이블에서 '네비게이션' 옵션이 포함된 자동차 리스트를 출력하는 SQL문을 작성해주세요. 결과는 자동차 ID를 기준으로 내림차순 정렬해주세요.
SELECT car_id
, car_type
, daily_fee
, options
FROM CAR_RENTAL_COMPANY_CAR
WHERE options like '%네비게이션%'
ORDER BY car_id desc
- link : https://school.programmers.co.kr/learn/courses/30/lessons/157343
2. 자동차 평균 대여 기간 구하기
[문제]
CAR_RENTAL_COMPANY_RENTAL_HISTORY 테이블에서 평균 대여 기간이 7일 이상인 자동차들의 자동차 ID와 평균 대여 기간(컬럼명: AVERAGE_DURATION) 리스트를 출력하는 SQL문을 작성해주세요. 평균 대여 기간은 소수점 두번째 자리에서 반올림하고, 결과는 평균 대여 기간을 기준으로 내림차순 정렬해주시고, 평균 대여 기간이 같으면 자동차 ID를 기준으로 내림차순 정렬해주세요.
select car_id
, round(avg(datediff(end_date, start_date)+1), 1) as average_duration
from car_rental_company_rental_history
group by car_id
having avg(datediff(end_date, start_date)+1) >= 7
order by average_duration desc
, car_id desc
- link : https://school.programmers.co.kr/learn/courses/30/lessons/157342
3. 대여 기록이 존재하는 자동차 리스트 구하기
[문제]
CAR_RENTAL_COMPANY_CAR 테이블과 CAR_RENTAL_COMPANY_RENTAL_HISTORY 테이블에서 자동차 종류가 '세단'인 자동차들 중 10월에 대여를 시작한 기록이 있는 자동차 ID 리스트를 출력하는 SQL문을 작성해주세요. 자동차 ID 리스트는 중복이 없어야 하며, 자동차 ID를 기준으로 내림차순 정렬해주세요.
select distinct t1.car_id
from car_rental_company_rental_history as t1
join car_rental_company_car as t2
on t1.car_id = t2.car_id
and t2.car_type = '세단'
and date_format(t1.start_date, '%Y-%m-01') = '2022-10-01'
order by t1.car_id desc;
- link : https://school.programmers.co.kr/learn/courses/30/lessons/59046
4. 자동차 대여 기록에서 대여중 / 대여 가능 여부 구분하기
[문제]
CAR_RENTAL_COMPANY_RENTAL_HISTORY 테이블에서 2022년 10월 16일에 대여 중인 자동차인 경우 '대여중' 이라고 표시하고, 대여 중이지 않은 자동차인 경우 '대여 가능'을 표시하는 컬럼(컬럼명: AVAILABILITY)을 추가하여 자동차 ID와 AVAILABILITY 리스트를 출력하는 SQL문을 작성해주세요. 이때 반납 날짜가 2022년 10월 16일인 경우에도 '대여중'으로 표시해주시고 결과는 자동차 ID를 기준으로 내림차순 정렬해주세요.
select car_id
, case when max(flag_avl) = 1 then '대여중' else '대여 가능' end AS availability
from (
select car_id
, case when start_date <= '2022-10-16' and '2022-10-16' <= end_date then 1 else 0 end AS flag_avl
from car_rental_company_rental_history
) t
group by car_id
order by car_id desc
- link : https://school.programmers.co.kr/learn/courses/30/lessons/157340
5. 특정 기간동안 대여 가능한 자동차들의 대여비용 구하기
[문제]
CAR_RENTAL_COMPANY_CAR 테이블과 CAR_RENTAL_COMPANY_RENTAL_HISTORY 테이블과 CAR_RENTAL_COMPANY_DISCOUNT_PLAN 테이블에서 자동차 종류가 '세단' 또는 'SUV' 인 자동차 중 2022년 11월 1일부터 2022년 11월 30일까지 대여 가능하고 30일간의 대여 금액이 50만원 이상 200만원 미만인 자동차에 대해서 자동차 ID, 자동차 종류, 대여 금액(컬럼명: FEE) 리스트를 출력하는 SQL문을 작성해주세요. 결과는 대여 금액을 기준으로 내림차순 정렬하고, 대여 금액이 같은 경우 자동차 종류를 기준으로 오름차순 정렬, 자동차 종류까지 같은 경우 자동차 ID를 기준으로 내림차순 정렬해주세요.
select car.car_id
, car.car_type
, round(car.daily_fee * 30 * (100 - fee.discount_rate)/100) AS fee
from car_rental_company_car AS car
join car_rental_company_discount_plan AS fee
on car.car_type = fee.car_type
where fee.car_type in ('세단', 'SUV')
and fee.duration_type = '30일 이상'
and car.car_id not in (select car_id
from car_rental_company_rental_history
where date_format(start_date, '%Y-%m-%d') <= '2022-11-30'
and date_format(end_date, '%Y-%m-%d') >= '2022-11-01')
and round(car.daily_fee * 30 * (100 - fee.discount_rate)/100) between 50*10000 and 200*10000-1
order by fee desc
, car_type asc
, car_id desc
- link : https://school.programmers.co.kr/learn/courses/30/lessons/157339
- 날짜 설정이 매우 중요하다.
- 시작일과 종료일이 11월 범위에 모두 포함되는 경우를 제외하면 된다.
6. 자동차 대여 기록 별 대여 금액 구하기
[문제]
CAR_RENTAL_COMPANY_CAR 테이블과 CAR_RENTAL_COMPANY_RENTAL_HISTORY 테이블과 CAR_RENTAL_COMPANY_DISCOUNT_PLAN 테이블에서 자동차 종류가 '트럭'인 자동차의 대여 기록에 대해서 대여 기록 별로 대여 금액(컬럼명: FEE)을 구하여 대여 기록 ID와 대여 금액 리스트를 출력하는 SQL문을 작성해주세요. 결과는 대여 금액을 기준으로 내림차순 정렬하고, 대여 금액이 같은 경우 대여 기록 ID를 기준으로 내림차순 정렬해주세요.
select history_id
, round(daily_fee * duration * (100 - coalesce(discount_rate, 0))/100) AS fee
from (
select history_id
, car_type
, daily_fee
, datediff(end_date, start_date) + 1 AS duration
, case when datediff(end_date, start_date) + 1 between 7 and 29 then '7일 이상'
when datediff(end_date, start_date) + 1 between 30 and 89 then '30일 이상'
when datediff(end_date, start_date) + 1 >= 90 then '90일 이상'
else null
end AS duration_type
from car_rental_company_rental_history AS rental
join car_rental_company_car AS car on rental.car_id = car.car_id and car.car_type = '트럭'
) history
left join car_rental_company_discount_plan AS discount
on history.car_type = discount.car_type
and history.duration_type = discount.duration_type
order by fee desc
, history_id desc
- link : https://school.programmers.co.kr/learn/courses/30/lessons/151141
- history테이블에 left join해야함을 유의하자.
7. 대여 횟수가 많은 자동차들의 월별 대여 횟수 구하기
[문제]
CAR_RENTAL_COMPANY_RENTAL_HISTORY 테이블에서 대여 시작일을 기준으로 2022년 8월부터 2022년 10월까지 총 대여 횟수가 5회 이상인 자동차들에 대해서 해당 기간 동안의 월별 자동차 ID 별 총 대여 횟수(컬럼명: RECORDS) 리스트를 출력하는 SQL문을 작성해주세요. 결과는 월을 기준으로 오름차순 정렬하고, 월이 같다면 자동차 ID를 기준으로 내림차순 정렬해주세요. 특정 월의 총 대여 횟수가 0인 경우에는 결과에서 제외해주세요.
select month(start_date) AS month
, car_id
, count(*) AS records
from car_rental_company_rental_history
where car_id in (
select car_id
from car_rental_company_rental_history
where start_date between '2022-08-01' and '2022-10-31'
group by car_id
having count(*) >= 5
)
and start_date between '2022-08-01' and '2022-10-31'
group by month(start_date)
, car_id
order by month asc
, car_id desc
- link : https://school.programmers.co.kr/learn/courses/30/lessons/151139
8. 자동차 대여 기록에서 장기/단기 대여 구분하기
[문제]
CAR_RENTAL_COMPANY_RENTAL_HISTORY 테이블에서 대여 시작일이 2022년 9월에 속하는 대여 기록에 대해서 대여 기간이 30일 이상이면 '장기 대여' 그렇지 않으면 '단기 대여' 로 표시하는 컬럼(컬럼명: RENT_TYPE)을 추가하여 대여기록을 출력하는 SQL문을 작성해주세요. 결과는 대여 기록 ID를 기준으로 내림차순 정렬해주세요.
select history_id
, car_id
, date_format(start_date, '%Y-%m-%d') AS start_date
, date_format(end_date, '%Y-%m-%d') AS end_date
, case when datediff(end_date, start_date) + 1 >= 30 then '장기 대여'
else '단기 대여'
end AS rent_type
from car_rental_company_rental_history
where start_date between '2022-09-01' and '2022-09-30'
order by history_id desc
- link : https://school.programmers.co.kr/learn/courses/30/lessons/151138
9. 자동차 종류 별 특정 옵션이 포함된 자동차 수 구하기
[문제]
CAR_RENTAL_COMPANY_CAR 테이블에서 '통풍시트', '열선시트', '가죽시트' 중 하나 이상의 옵션이 포함된 자동차가 자동차 종류 별로 몇 대인지 출력하는 SQL문을 작성해주세요. 이때 자동차 수에 대한 컬럼명은 CARS로 지정하고, 결과는 자동차 종류를 기준으로 오름차순 정렬해주세요.
with t_flag AS
(
select car_id
, car_type
, options
, sign(find_in_set('통풍시트', options) + find_in_set('열선시트', options) + find_in_set('가죽시트', options) > 0) as flag
from car_rental_company_car
)
select car_type
, count(*) AS cars
from t_flag
where flag = 1
group by car_type
order by car_type
- link : https://school.programmers.co.kr/learn/courses/30/lessons/151137
'Data Analysis > SQL Coding Test' 카테고리의 다른 글
[프로그래머스 SQL 코딩테스트 연습] 도서 관련 문제 모음 (0) | 2023.11.16 |
---|