반응형
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
- Python
- array
- c#
- Kotlin
- GIT
- SQL
- google apps script
- Redshift
- Google Excel
- hive
- Excel
- django
- Github
- PANDAS
- PySpark
- list
- PostgreSQL
- dataframe
- Tkinter
- matplotlib
- string
- Google Spreadsheet
- math
- numpy
- Mac
- 파이썬
- gas
- Java
- Apache
Archives
- Today
- Total
목록like (1)
달나라 노트
Redshift : like & ilike (텍스트 패턴 매칭, text pattern matching)
SQL에서 어떤 패턴의 텍스트를 찾아낼 때 흔히 사용하는 operator로는 like와 ilike가 있습니다. Syntax some_text like 'pattern' some_text ilike 'pattern' Syntax는 위와 같습니다. some_text 속에 pattern과 일치하는 부분이 있다면 True를 반환하고, pattern과 일치하는 부분이 없다면 False를 반환합니다. some_text는 column 이름으로 대체 가능합니다. like와 ilike는 동일한 기능을 가지지만 차이점은 다음과 같습니다. like = 대소문자 구분(case sensitive) (e.g. a와 A는 다르다고 판단) ilike = 대소문자 구분 안함(case insensitive) (e.g. a와 A는 동일하..
SQL/Redshift
2021. 7. 7. 19:49