본문 바로가기

[HIVE] 날짜 더하기 & 빼기 :: date_add, date_sub

SQL/HIVE 2021. 4. 13.

반응형

date_add(날짜, 계산일수)

: 날짜 더하기

 

 

date_sub(날짜, 계산일수)

: 날짜 빼기

 

 


예시 )

 

index_date를 기준으로 30일 전/후 날짜를 뽑아보았다.

SELECT indexing_date as index_date
        , date_sub(indexing_date, 30) as before_30
        , date_add(indexing_date, 30) as after_30 
FROM table_name

 

 

참고) string > date

mizykk.tistory.com/90

 

[HIVE] date_format 다루기 :: 날짜함수

date_format(날짜, 형식) : 하이브에서 date_format을 이용하면 날짜에서 다양한 정보를 추출할 수 있다. - 날짜 : date/timestamp/string 입력 가능 - 형식 Format 설명 예시 G 시대(BC, AD) AD y 연도(year) 199..

mizykk.tistory.com

 

 

 

728x90

Comments