반응형
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
- matplotlib
- Python
- list
- PySpark
- string
- PostgreSQL
- Tkinter
- hive
- Excel
- django
- Google Excel
- Mac
- GIT
- numpy
- Google Spreadsheet
- SQL
- math
- dataframe
- c#
- Redshift
- array
- google apps script
- 파이썬
- Kotlin
- Github
- Java
- gas
- Apache
- PANDAS
Archives
- Today
- Total
달나라 노트
Hive : current_date (오늘 날짜 출력하기, unix_timestamp로 현재 시간 출력하기) 본문
SQL/Apache Hive
Hive : current_date (오늘 날짜 출력하기, unix_timestamp로 현재 시간 출력하기)
CosmosProject 2021. 8. 24. 19:12728x90
반응형
current_date를 사용하면 현재 날짜를 출력할 수 있습니다.
select current_date,
date_format(current_date, 'yyyyMMdd'),
unix_timestamp(),
from_unixtime(unix_timestamp()),
date_format(from_unixtime(unix_timestamp()), 'yyyyMMdd')
;
-- Result
2021-08-24
20210824
위처럼 current_date는 오늘 날짜를 반환해줍니다.
date_format 함수와 같이 사용해서 날짜 형식도 바꿀 수 있습니다.
select date_add(current_date, -1)
;
-- Result
2021-08-23
date_add 함수와 동시에 사용할 수도 있습니다.
이 외에 현재 날짜를 추출할 수 있는 방법을 봐보겠습니다.
select current_date,
from_unixtime(unix_timestamp()),
date_format(from_unixtime(unix_timestamp()), 'yyyyMMdd')
;
-- Result
2021-08-24
2021-08-24 19:23:10
20210824
unix_timestamp 함수는 날짜를 unixtimestamp(e.g. 1604934000)로 변환해주는 함수지만
위처럼 아무 인자 없이 사용하면 현재 시간을 unixtimestamp로 반환해줍니다.
이를 이용하여 from_unixtime 함수로 현재 unixtimestamp를 현재 날짜 시간으로 바꾸면
현재 날짜를 얻을 수 있는것이죠.
728x90
반응형
'SQL > Apache Hive' 카테고리의 다른 글
Hive : substring (문자열 추출하기) (0) | 2021.09.13 |
---|---|
Hive : instr (특정 문자열 위치 찾기) (0) | 2021.09.13 |
Hive : hive.vectorized.execution (Vector화 사용하기) (0) | 2021.06.04 |
Hive : hive.execution.engine (hive engine 설정) (0) | 2021.06.04 |
Hive : hive.exec.dynamic.partition (동적 partition, 정적 partition, dynamic partition, static partition) (0) | 2021.06.04 |
Comments