일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 Spreadsheet
- PANDAS
- array
- c#
- gas
- PostgreSQL
- Redshift
- dataframe
- SQL
- Google Excel
- 파이썬
- Tkinter
- Java
- Excel
- matplotlib
- string
- math
- Github
- list
- Python
- PySpark
- Kotlin
- numpy
- django
- hive
- Mac
- Apache
- google apps script
- GIT
- Today
- Total
목록PostgreSQL (21)
달나라 노트
어떤 날짜에 대해 해당 주차의 시작 날짜로 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을 추가한다.라는 의미입니다.
Redshift에서 어떤 Table에 대한 권한을 부여하기 위해선 grant 구문을 사용합니다. Syntaxgrant grant_option_for on table_name to user/role 구문은 대략적으로 위와 같습니다. - grant_option_forgrant_option_for는 어떤 권한을 부여(grant)할지를 명시하는 부분입니다.selectinsertupdatedeletedropreferencesaltertruncateall등이 있습니다. - table_name권한을 grant할 대상 table 이름을 명시합니다. - user/role어떤 user 또는 role에게 권한을 부여할지를 명시합니다. grant select on test_table to test_user_1; 예시는..
Redshift에서 어떤 Table에 대한 권한을 제거하기 위해선 revoke 구문을 사용합니다. Syntaxrevoke grant_option_for on table_name from user/role 구문은 대략적으로 위와 같습니다. - grant_option_forgrant_option_for는 어떤 권한을 회수(revoke)할지를 명시하는 부분입니다.selectinsertupdatedeletedropreferencesaltertruncateall등이 있습니다. - table_name권한을 revoke할 대상 table 이름을 명시합니다. - user/role어떤 user 또는 role에게서 권한을 회수할지를 명시합니다. revoke select on test_table from test_u..