일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Python
- Java
- Google Excel
- hive
- dataframe
- Excel
- PANDAS
- Apache
- Github
- matplotlib
- math
- Redshift
- string
- gas
- SQL
- list
- google apps script
- PySpark
- array
- Google Spreadsheet
- GIT
- Mac
- 파이썬
- Kotlin
- django
- Tkinter
- PostgreSQL
- c#
- numpy
- Today
- Total
목록getdate (2)
달나라 노트

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..
Redshift에서 현재 날짜 또는 현재 시간을 추출할 수 있는 방법을 알아봅시다. select current_date; -- Result 2021-08-25 먼저 current_date입니다. current_date는 현재 날짜를 반환해줍니다. select to_char(current_date, 'yyyymmdd'); -- Result 20210825 current_date로 반환되는 날짜의 data type은 날짜이기때문에 to_char 함수와 같이 사용할 수 있습니다. select sysdate, --> 2021-08-25 19:38:52.382610 getdate() --> 2021-08-25 19:38:52.000000 ; sysdate와 getdate 함수는 현재 날짜와 시간을 반환해줍니다. ..