일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- gas
- Tkinter
- Kotlin
- SQL
- array
- Apache
- Github
- GIT
- hive
- c#
- Excel
- dataframe
- 파이썬
- numpy
- Google Excel
- Google Spreadsheet
- django
- Mac
- string
- Python
- Redshift
- PySpark
- google apps script
- list
- PostgreSQL
- PANDAS
- matplotlib
- Java
- math
- Today
- Total
목록SQL (63)
달나라 노트
Syntax datediff(timestamp_1, timestamp_2) (timestamp_1 - timestamp_2) 를 계산하여 일(day) 단위로 return합니다. select current_timestamp , date_add(current_timestamp, 30) , datediff(date_add(current_timestamp, 30), current_timestamp) ; -- Result 2023-10-10 12:31:20.122000000 2023-11-09 30 date_add는 어떤 시점에 특정 일수를 더해줍니다. - datediff(date_add(current_timestamp, 30), current_timestamp) 따라서 위 구문은 아래와 동일합니다. datedi..
extract 함수는 어떤 날짜/시간 string에서 원하는 요소를 추출합니다. Syntax extract(field from datetime_string) datetime_string에서 field에 명시된 요소를 추출합니다. field로 사용할 수 있는 것은 다음과 같습니다. - year -> 년 - month -> 월 - day -> 일 - quarter -> 분기 - week -> 주차 - dayofweek -> 요일 - hour -> 시 - minute -> 분 - second -> 초 select extract(year from '2023-11-10 12:34:56') ; -- Result 2023 2023-11-10 12:34:56에서 year(년)를 추출합니다. 2023이 return됩니다..
Syntax dayofmonth(date_string/timestamp_string) -> 주어진 일자에 대해 일을 return합니다. dayofweek(date_string/timestamp_string) -> 주어진 일자에 대해 요일 번호를 return합니다. weekofyear(date_string/timestamp_string) -> 주어진 일자에 대해 weeknumber를 return합니다. select dayofmonth('2020-11-10') --> 10 , dayofmonth('2020-11-10 12:34:56') --> 10 ; - dayofmonth('2020-11-10') 2020-11-10에서 일(day)을 추출합니다. 따라서 10이 return됩니다. - dayofmonth('..