반응형
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 | 31 |
Tags
- c#
- array
- PostgreSQL
- hive
- Tkinter
- Python
- Google Excel
- Java
- PANDAS
- Google Spreadsheet
- math
- gas
- django
- Github
- numpy
- list
- GIT
- dataframe
- google apps script
- Redshift
- Apache
- Excel
- PySpark
- string
- Kotlin
- matplotlib
- SQL
- Mac
- 파이썬
Archives
- Today
- Total
달나라 노트
Hive : year(), month(), day(), quarter(), hour(), minute(), second() (날짜, 시간 요소 추출) 본문
SQL/Apache Hive
Hive : year(), month(), day(), quarter(), hour(), minute(), second() (날짜, 시간 요소 추출)
CosmosProject 2020. 12. 17. 00:50728x90
반응형
year(date_string)
month(date_string)
day(date_string)
quarter(date_string)
hour(date_string)
minute(date_string)
second(date_string)
각 함수는 위처럼 date string을 받아 date string에 있는 년, 월, 일, 분기, 시, 분, 초를 integer의 형태로 반환합니다.
select year('2020-11-10'); -> 결과 : 2020
select year('2020-11-10 12:34:56'); -> 결과 : 2020
select month('2020-11-10'); -> 결과 : 11
select month('2020-11-10 12:34:56'); -> 결과 : 11
select day('2020-11-10'); -> 결과 : 10
select day('2020-11-10 12:34:56'); -> 결과 : 10
select quarter('2020-11-10'); -> 결과 : 4
select quarter('2020-11-10 12:34:56'); -> 결과 : 4
select hour('2020-11-10'); -> 결과 : null
select hour('2020-11-10 12:34:56'); -> 결과 : 12
select minute('2020-11-10'); -> 결과 : null
select minute('2020-11-10 12:34:56'); -> 결과 : 34
select second('2020-11-10'); -> 결과 : null
select second('2020-11-10 12:34:56'); -> 결과 : 56
date 형태와 timestamp 형식을 모두 전달할 수 있으며, hour, munute, second의 예시에서처럼 추출할 요소가 없다면 null값을 반환합니다.
728x90
반응형
'SQL > Apache Hive' 카테고리의 다른 글
Hive : date_format() (날짜 format 변경) (0) | 2020.12.17 |
---|---|
Hive : cast() (데이터 형식 변환) (0) | 2020.12.17 |
Hive : date_add(), date_sub() (특정 일 수 더하고 빼기) (0) | 2020.12.17 |
Hive : to_date() (timestap를 date로 변환) (0) | 2020.12.17 |
Hive : unix_timestamp & from_unixtime (yyyymmdd 형태의 텍스트를 date type으로 바꾸기. 날짜와 unix_timestamp간의 변환) (0) | 2020.12.17 |
Comments