일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 윈도우
- String Functions and Operators
- Sring Functions and Operators
- String Function and Operators
- 오라클
- Oracle
- Data and Time Functions
- SVN
- Tibero
- 전자정부표준프레임워크
- Date and Time Functions
- HTTP
- String Functions and Date Operators
- Date and Time Function
- 티베로
- 방화벽
- 전자정부 표준프레임워크
- MySQL
- Today
- Total
웹이야기
MySQL REGEXP_LIKE() / REGEXP 함수 본문
MySQL 8.0에서는 REGEXP_LIKE(), 그 이전버전에서는 REGEXP()로 이용할 수 있다.
mysql>SELECT * FROM COMTCCMMNDETAILCODE WHERE REGEXP_LIKE(CODE, '^b') ;
mysql>SELECT * FROM COMTCCMMNDETAILCODE WHERE code REGEXP '^b' ;
위 2개는 동일하다.
REGEXP_LIKE(expr, pat[, match_type])
와 같이 사용할 수 있다.
match_type 으로는 c, i, m, n, u 를 사용할 수 있다.
c : Case sensitive matching.
i : Case-insensitive matching. 따로 명시하지 않으면 i가 기본으로 적용되는 듯하다.
m : Multiple-line mode. Recognize line terminators within the string. The default behavior is to match line terminators only at the start and end of the string expression.
n : The . character matches line terminators. The default is for . matching to stop at the end of a line.
u : Unix-only line endings. Only the newline character is recognized as a line ending by the ., ^, and $ match operators.
mysql> SELECT CODE FROM COMTCCMMNDETAILCODE WHERE REGEXP_LIKE(CODE, '^B', 'c') ;
CODE column의 데이타가 "B"로 시작하는 것만 출력해준다.
아래와 같은 형태도 대소문자를 구별한다. binary 를 붙여준다.
mysql> SELECT REGEXP_LIKE('a', 'A'), REGEXP_LIKE('a', BINARY 'A'), REGEXP_LIKE('A', BINARY 'a'), REGEXP_LIKE('a', BINARY 'a') ;
+-----------------------+------------------------------+------------------------------+------------------------------+
| REGEXP_LIKE('a', 'A') | REGEXP_LIKE('a', BINARY 'A') | REGEXP_LIKE('A', BINARY 'a') | REGEXP_LIKE('a', BINARY 'a') |
+-----------------------+------------------------------+------------------------------+------------------------------+
| 1 | 0 | 0 | 1 |
+-----------------------+------------------------------+------------------------------+------------------------------+
1 row in set (0.01 sec)
^B와 같이 사용할 수 있는 정규표현식 구문들에 대해서는 아래 URL을 참조한다.
'D > MySQL' 카테고리의 다른 글
MySQL character-set 확인 / MySQL 한글 (0) | 2020.03.12 |
---|---|
MySQL 정규표현식 구문 (0) | 2020.03.09 |
MySQL 정규표현 함수 (0) | 2020.03.09 |
MySQL 검색에 대한 몇가지 (0) | 2020.03.09 |
MySQL에서 NULL에 관한 몇가지 (0) | 2020.03.09 |