반응형
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
- string
- django
- google apps script
- list
- c#
- Python
- Mac
- hive
- Github
- Redshift
- GIT
- Java
- math
- SQL
- PostgreSQL
- Google Spreadsheet
- Kotlin
- matplotlib
- Excel
- PySpark
- array
- Google Excel
- Apache
- 파이썬
- PANDAS
- numpy
- gas
- dataframe
- Tkinter
Archives
- Today
- Total
목록yyyymmdd (1)
달나라 노트
Hive : unix_timestamp & from_unixtime (yyyymmdd 형태의 텍스트를 date type으로 바꾸기. 날짜와 unix_timestamp간의 변환)
unix_timestamp()의 사용법은 아래와 같습니다. unix_timestamp(날짜를 나타내는 텍스트, 날짜의 형식) 예시를 한번 봐봅시다. select unix_timestamp('2020-11-10', 'yyyy-MM-dd'); 결과 : 1604934000 위 식을 보면 날짜를 나타내는 텍스트는 2020-11-10입니다. 그리고 이 텍스트가 yyyy-MM-dd라는 형식을 가지고 있다고 알려주면, 2020-11-10이라는 날짜를 unix timestamp로 변환해서 반환해주죠. select unix_timestamp('20201110', 'yyyyMMdd'); 결과 : 1604934000 만약 위처럼 주어지는 날짜 텍스트의 형식이 yyyy-MM-dd에서 yyyyMMdd로 바뀐다면, 날짜 형식도 ..
SQL/Apache Hive
2020. 12. 17. 00:31