title |
---|
NOT REGEXP |
Returns 1 if the string expr doesn't match the regular expression specified by the pattern pat, 0 otherwise.
<expr> NOT REGEXP <pattern>
SELECT 'databend' NOT REGEXP 'd*';
+------------------------------+
| ('databend' not regexp 'd*') |
+------------------------------+
| 0 |
+------------------------------+