일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- dataframe
- Redshift
- Apache
- PANDAS
- Mac
- math
- django
- c#
- numpy
- SQL
- GIT
- hive
- list
- array
- Java
- string
- google apps script
- Kotlin
- Google Excel
- 파이썬
- matplotlib
- PySpark
- gas
- PostgreSQL
- Github
- Python
- Tkinter
- Google Spreadsheet
- Excel
- Today
- Total
목록SQL (63)
달나라 노트
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과 맞는 부분이 여러 개 발견될 경우 몇..
Redshift에서 현재 사용중인 database의 이름을 알고 싶으면 current_datebase를 이용하면 됩니다. select current_database() ; -- Result sandbox