일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 apps script
- c#
- dataframe
- Apache
- 파이썬
- django
- list
- Python
- Github
- Google Spreadsheet
- gas
- Java
- hive
- array
- matplotlib
- GIT
- Excel
- Redshift
- string
- Tkinter
- PySpark
- Google Excel
- PANDAS
- SQL
- Mac
- numpy
- Kotlin
- math
- PostgreSQL
- Today
- Total
목록분류 전체보기 (832)
달나라 노트
Pandas의 columns는 DataFrame에 존재하는 Column의 정보를 출력해줍니다. import pandas as pddict_test = { 'col1': [1, 2, 3, 4, 5], 'col2': [2, 3, 4, 5, 6],}df_test = pd.DataFrame(dict_test)print(df_test)print(df_test.columns)-- Result col1 col20 1 21 2 32 3 43 4 54 5 6Index(['col1', 'col2'], dtype='object') list() method를 이용해서 column을 list의 형태로 만들 수도 있습니다. import ..
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..
Redshift에서 REGEXP_SUBSTR() 함수는 특정한 패턴을 주고 이 패턴에 일치하는 문자열을 return합니다. Syntaxregexp_substr(string, pattern, start_position, occurence, search_parameter) - stringpattern 검색을 할 대상이 될 string 또는 column 이름 입니다. - pattern검색할 pattern입니다. - start_positionstring에서 몇 번째 문자부터 검색을 시작할지를 나타냅니다.1을 전달할 경우 string의 가장 첫 번째 문자부터 pattern 검색을 시작합니다.(1이 default 값입니다.) - occurencestring에서 pattern과 맞는 부분이 여러 개 발견될 경우 몇..