๋ฐ์ํ
https://school.programmers.co.kr/learn/courses/30/lessons/157341
CAR_RENTAL_COMPANY_CAR ํ ์ด๋ธ๊ณผ CAR_RENTAL_COMPANY_RENTAL_HISTORY ํ ์ด๋ธ์์ ์๋์ฐจ ์ข ๋ฅ๊ฐ '์ธ๋จ'์ธ ์๋์ฐจ๋ค ์ค 10์์ ๋์ฌ๋ฅผ ์์ํ ๊ธฐ๋ก์ด ์๋ ์๋์ฐจ ID ๋ฆฌ์คํธ๋ฅผ ์ถ๋ ฅํ๋ SQL๋ฌธ์ ์์ฑํด์ฃผ์ธ์. ์๋์ฐจ ID ๋ฆฌ์คํธ๋ ์ค๋ณต์ด ์์ด์ผ ํ๋ฉฐ, ์๋์ฐจ ID๋ฅผ ๊ธฐ์ค์ผ๋ก ๋ด๋ฆผ์ฐจ์ ์ ๋ ฌํด์ฃผ์ธ์.
-- ์ฝ๋๋ฅผ ์
๋ ฅํ์ธ์
SELECT distinct(c.CAR_ID)
from CAR_RENTAL_COMPANY_CAR c join CAR_RENTAL_COMPANY_RENTAL_HISTORY h on c.CAR_ID = h.CAR_ID
where c.CAR_TYPE = '์ธ๋จ' and month(h.START_DATE) = '10'
order by c.CAR_ID desc
๋ฐ์ํ