개인적인 정리

MySQL 정규표현식 함수 본문

DB/MYSQL

MySQL 정규표현식 함수

yeon.Biju 2020. 3. 9. 17:10

MySQL5.7 에서는 아래와 같은 함수를 지원한다.

 

NOT REGEXP      : Negation of REGEXP

REGEXP             : Whether string matches regular expression

RLIKE                : Whether string matches regular expressio

 

https://dev.mysql.com/doc/refman/5.7/en/regexp.html

 

 

MySQL :: MySQL 5.7 Reference Manual :: 12.7.2 Regular Expressions

12.7.2 Regular Expressions Table 12.13 Regular Expression Functions and Operators Name Description NOT REGEXP Negation of REGEXP REGEXP Whether string matches regular expression RLIKE Whether string matches regular expression A regular expression is a powe

dev.mysql.com

 

MySQL 8.0에서는 아래와 같은 함수를 지원한다.

 

NOT REGEXP           : Negation of REGEXP

REGEXP                  : Whether string matches regular expression

REGEXP_INSTR()       : Starting index of substring matching regular expression

REGEXP_LIKE           : Whether string matches regular expression

REGEXP_REPLACE()   : Replace substrings matching regular expression

REGEXP_SUBSTR()    : Return substring matching regular expression

RLIKE                    : Whether string matches regular expression

 

https://dev.mysql.com/doc/refman/8.0/en/regexp.html

'DB > MYSQL' 카테고리의 다른 글

MySQL에서 table index 보기  (0) 2020.03.18
LEAST()함수  (0) 2020.03.18
GREATEST() 함수  (0) 2020.03.18
MySQL 검색에 대한 몇가지  (0) 2020.03.09
MySQL NULL  (0) 2020.03.09
MySQL 날짜 더하기, 빼기  (0) 2020.03.06
MySQL 연, 월, 일, 요일 구하는 함수  (0) 2020.03.06
MySQL 현재 시간/날짜  (0) 2020.03.06
Comments