not rlike
Returns 1 if the string expr doesn't match the regular expression specified by the pattern pat, 0 otherwise.
Syntax
expr not rlike pat
Examples
MySQL [(none)]> SELECT 'databend' not rlike 'd*';
+-----------------------------+
| ('databend' not rlike 'd*') |
+-----------------------------+
| 0 |
+-----------------------------+