Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 411 Bytes

File metadata and controls

22 lines (17 loc) · 411 Bytes
title
NOT REGEXP

Returns 1 if the string expr doesn't match the regular expression specified by the pattern pat, 0 otherwise.

Syntax

<expr> NOT REGEXP <pattern>

Examples

SELECT 'databend' NOT REGEXP 'd*';
+------------------------------+
| ('databend' not regexp 'd*') |
+------------------------------+
|                            0 |
+------------------------------+