일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Google Excel
- PySpark
- list
- Github
- Redshift
- Google Spreadsheet
- hive
- array
- Apache
- GIT
- Excel
- PostgreSQL
- google apps script
- Java
- numpy
- Kotlin
- dataframe
- Mac
- 파이썬
- Tkinter
- SQL
- math
- string
- c#
- gas
- django
- PANDAS
- Python
- matplotlib
- Today
- Total
목록SQL (115)
달나라 노트
Presto의 date_add() 함수는 어떤 시점에 특정 시간 간격(년, 월, 일, 분기, 주, 시간, 분, 초, 밀리초)을 더하고 빼는 역할을 해줍니다. Syntax date_add(unit, value, timestamp) - unit 더할 시간 간격의 단위를 의미합니다. year -> 년 month -> 월 day -> 일 quarter -> 분기 week -> 주차 dayofweek -> 요일 hour -> 시 minute -> 분 second -> 초 millisecond -> 밀리초 - value 더할 시간 간격을 의미합니다. 더하고싶으면 양수를 쓰면 되고, 빼고 싶으면 음수를 적으면 됩니다. - timestamp value를 더할 대상이 되는 timestamp입니다. timestamp 뿐 ..
두 시점간의 차이가 어느 정도인지를 구하는 방법은 여러 가지가 있겠지만 오늘은 unix_timestamp를 이용해 보겠습니다. unix_timestamp 함수는 어떤 timestamp 또는 timestamp_string을 unix_timestamp로 변환해주는 역할을 합니다. https://cosmosproject.tistory.com/50 Hive : unix_timestamp & from_unixtime (yyyymmdd 형태의 텍스트를 date type으로 바꾸기. 날짜와 unix_timestamp간의 unix_timestamp()의 사용법은 아래와 같습니다. unix_timestamp(날짜를 나타내는 텍스트, 날짜의 형식) 예시를 한번 봐봅시다. select unix_timestamp('2020-..
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됩니다..