반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- MSA
- 맥북
- jdk17
- 의사결정나무모형
- 코어뱅킹
- 모놀리식
- python
- 계정계
- it자격증
- 개인프로필스튜디오창업
- 렌탈스튜디오창업
- union
- 은행IT
- 맥북셋팅
- 학점은행제
- jdk
- SQL
- Homebrew
- 코딩테스트
- 컴퓨터공학학사취득
- Pass By Value
- 채널계
- fastapi
- DB
- 학점은행제무료강의
- 프로그래머스
- 디렉토리계층구조
- 맥북환경설정
- 오라클
- oracleapex
Archives
- Today
- Total
개발머해니
[프로그래머스] 자동차 대여 기록에서 장기/단기 대여 구분하기 본문
728x90
반응형
문제
https://school.programmers.co.kr/learn/courses/30/lessons/151138
정답
-- 코드를 입력하세요
SELECT
history_id as HISTORY_ID
, car_id as CAR_ID
, to_char(start_date, 'yyyy-mm-dd') as START_DATE
, to_char(end_date, 'yyyy-mm-dd') as END_DATE
, case when (end_date - start_date+1)>=30
then '장기 대여'
else '단기 대여'
end as RENT_TYPE
from car_rental_company_rental_history
where
start_date >= to_date('20220901', 'yyyy-mm-dd')
and start_date < to_date('20221001', 'yyyy-mm-dd')
order by history_id desc;
728x90
반응형
'SQL' 카테고리의 다른 글
오라클 설치할 수 없을 때 : Oracle Apex (0) | 2024.06.11 |
---|---|
[프로그래머스] 특정 기간동안 대여 가능한 자동차들의 대여비용 구하기 (0) | 2024.02.15 |
[프로그래머스] 주문량이 많은 아이스크림들 조회하기 (0) | 2024.01.09 |