반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Github
- Tkinter
- django
- matplotlib
- PySpark
- PostgreSQL
- string
- hive
- gas
- numpy
- math
- PANDAS
- 파이썬
- Java
- Kotlin
- array
- Google Excel
- Redshift
- google apps script
- Apache
- SQL
- GIT
- c#
- list
- Mac
- Python
- Excel
- dataframe
- Google Spreadsheet
Archives
- Today
- Total
목록SQL/Redshift (70)
달나라 노트
Redshift : REGEXP_SUBSTR() (정규표현식 추출, 패턴 문자 추출, Regular Expression Substring)
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과 맞는 부분이 여러 개 발견될 경우 몇..
SQL/Redshift
2024. 5. 2. 00:09
Redshift : current_database (현재 database 이름 출력)
Redshift에서 현재 사용중인 database의 이름을 알고 싶으면 current_datebase를 이용하면 됩니다. select current_database() ; -- Result sandbox
SQL/Redshift
2024. 4. 4. 19:15
Redshift : current_user (현재 사용중인 user id 출력)
Redshift에서 현재 query를 돌리는 user를 알고 싶으면 current_user를 사용하면 됩니다. select current_user ; -- Result test_user_1
SQL/Redshift
2024. 4. 4. 19:01