일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Redshift
- 파이썬
- PostgreSQL
- Java
- PANDAS
- c#
- hive
- Github
- Excel
- SQL
- django
- GIT
- Mac
- Apache
- string
- list
- math
- Tkinter
- Google Spreadsheet
- Kotlin
- array
- PySpark
- Google Excel
- gas
- google apps script
- matplotlib
- Python
- numpy
- dataframe
- Today
- Total
목록분류 전체보기 (832)
달나라 노트
cumsum은 누적합을 구하며cumprod는 누적곱을 구합니다. cumsum부터 알아봅시다. Syntaxcumsum(skipna=True/False, axis=0/1)cumprod(skipna=True/False, axis=0/1) - skipnaTrue일 경우 NaN값을 무시하고 계산합니다.False일 경우 NaN값을 고려하고 계산합니다. - axis누적합을 구할 축을 지정합니다.기본값은 0이며 0으로 지정해야 컬럼 기준 누적합이 됩니다. import pandas as pddict_test = { 'seq': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], 'id': [1, 1, 1, 1, 1, 2, 2, 2, 2, 2], 'qty': [200, 80, 150, 50, 1..
어떤 날짜에 대해 해당 주차의 시작 날짜로 truncate을 하고 싶다면 크게 2가지 방법이 있습니다. 오늘 날짜가 2024-07-25 (목)이라고 가정하겠습니다. 1. date_trunc 함수 사용date_turnc('week', current_date);-- Result2024-07-22 date_trunc() 함수는 월요일을 일주일의 시작으로 간주합니다.오늘이 2024-07-25(목)이므로 같은 주의 월요일로 truncate을 합니다.따라서 위 결과는 2024-07-22가 됩니다. https://cosmosproject.tistory.com/170 2021-02-" data-og-host="cosmosproject.tistory.com" data-og-source-url="https://cosm..
alter table ~ add ~를 이용하면 table에 column을 추가할 수 있습니다. Syntaxalter table table_name add column_name datatype 위처럼 원하는 table_name에 datatype을 가진 column_name을 추가할 수 있습니다. alter table test_schema.test_tableadd price bigint; test_schema.test_tabe이라는 table에datatype이 bigint인 price라는 column을 추가한다.라는 의미입니다.
pg_users table은 Redshift에 존재하는 user 정보를 return합니다. select *from pg_users; pg_users가 return하는 정보는 아래 링크를 보면 자세히 나와있습니다. https://www.postgresql.org/docs/current/view-pg-user.html 54.33. pg_user54.33. pg_user # The view pg_user provides access to information about database users. This is simply a publicly readable view of …www.postgresql.org