Syntax
str [NOT] REGEXP RLIKE pat
Purpose
You can call this function for regex matching. If any argument is NULL, the function returns NULL.
Examples
obclient> SELECT
1234 REGEXP 1,
'hello' RLIKE 'h%'
\G
*************************** 1. row ***************************
1234 REGEXP 1: 1
'hello' RLIKE 'h%': 0
1 row in set (0.01 sec)