일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- hive
- PANDAS
- Apache
- array
- PostgreSQL
- string
- numpy
- 파이썬
- Tkinter
- Google Excel
- Python
- SQL
- dataframe
- Github
- gas
- django
- c#
- list
- Google Spreadsheet
- matplotlib
- Java
- google apps script
- GIT
- Redshift
- Kotlin
- PySpark
- Excel
- math
- Mac
- Today
- Total
목록Timestamp (4)
달나라 노트
current_timestamp는 현재 시스템의 시간을 timestamp type으로 return합니다. select current_timestamp -- Result 2023-10-09 18:47:12.970000000
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..
YYYY-MM-DD의 날짜 형식으로 적혀있는 문자나 YYYY-MM-DD HH:MM:SS 처럼 timestamp 형식으로 적혀있는 문자들은 데이터 형식이 문자이기 때문에 날짜나 시간에 해당하는 계산을 할 수 없습니다. 따라서 이런 문자들을 먼저 텍스트가 아닌 date 또는 timestamp 형식으로 변환을 해야 날짜와 시간 형식에 대해 가능한 여러 연산들(e.g. 5일 전, 13시간 전 등등)을 할 수 있습니다. 이를 위해서 Presto에는 date와 timestamp 함수를 제공합니다. select date '2022-01-14', --> 2022-01-14 timestamp '2022-01-14', --> 2022-01-14 00:00:00 timestamp '2022-01-14 20:35:21' --..
date_part 함수를 사용하면 날짜 데이터에서 특정 부분을 추출해낼 수 있습니다. date_part 함수의 syntax는 아래와 같습니다. date_part(part, date/timestamp) date/teimstamp 데이터에서 part에 명시된 부분을 return합니다. -- 현재 sysdate = 2021-06-07 20:35:59.461359 select date_part('year', sysdate); --> 2021 select date_part('month', sysdate); --> 6 select date_part('day', sysdate); --> 7 select date_part('week', sysdate); --> 23 select date_part('hour', sysd..