일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Mac
- list
- dataframe
- google apps script
- Excel
- PostgreSQL
- PANDAS
- PySpark
- Kotlin
- gas
- Java
- array
- Google Excel
- Redshift
- matplotlib
- Google Spreadsheet
- SQL
- string
- math
- Github
- Tkinter
- 파이썬
- hive
- django
- Apache
- Python
- c#
- GIT
- numpy
- Today
- Total
목록TIME (8)
달나라 노트
current_timestamp는 현재 시스템의 시간을 timestamp type으로 return합니다. select current_timestamp -- Result 2023-10-09 18:47:12.970000000
Presto의 date_diff() 함수는 두 시점간의 차이를 원하는 단위(e.g. 시간, 분 등)로 return합니다. Syntax date_diff(unit, start_datetime, end_datetime) - unit 두 시점간의 차이를 어떤 단위로 return할지를 결정합니다. year = 두 시점간의 차이를 년 단위로 계산합니다. month = 두 시점간의 차이를 월 단위로 계산합니다. day = 두 시점간의 차이를 일 단위로 계산합니다. hour = 두 시점간의 차이를 시간 단위로 계산합니다. minute = 두 시점간의 차이를 분 단위로 계산합니다. second = 두 시점간의 차이를 초 단위로 계산합니다. - start_datetime 시작 시점의 datetime입니다. - end_d..
to_timestamp() 함수는 날짜/시간 형태의 문자열이나 timestamp type의 데이터를 받아 원하는 timestampz로 변환합니다. Syntax to_timestamp(timestamp/timestamp_string, format) - timestamp/timestamp_string timestamp로 type을 변환할 대상 timestamp 또는 날짜/시간 형태의 문자열을 전달합니다. - format timestamp/timestamp_string 이 어떤 형태를 가지고 있는지에 대한 pattern을 의미합니다. select to_timestamp('20230101_082739', 'yyyymmdd_HH24MISS') -- Result 2023-01-01 08:27:39.000000 +0..
GAS에서는 날짜/시간 객체에 담긴 요소들을 얻어올 수 있는 함수입니다. 예를들어 2022-11-20 20:13:56 라는 날짜 객체가 있으면 여기서 년도인 2022년을 얻어온다거나, 시간인 20을 얻어온다거나 하는 식이죠. Syntax DateTime.getFullYear() DateTime.getMonth() DateTime.getDate() DateTime.getHours() DateTime.getMinutes() DateTime.getSeconds() 사용법은 간단합니다. 날짜 객체에 위 method들을 적용시켜주면 됩니다. Method Decription Example getFullYear() 년도 값을 return 2022 getMonth() 월 값을 return 0, 1, 2, ..., 10..