Not regex like
Negated regular expression match comparison.
Returns true when the left string does not match the regular expression on the right.
Category: comparison
SQL symbol: NOT RLIKE
Example
SELECT 'a' NOT RLIKE 'a';
Signatures
blob NOT RLIKE blob→ booleanblob NOT RLIKE varchar→ booleanvarchar NOT RLIKE blob→ booleanvarchar NOT RLIKE varchar→ boolean
Types
- Left: blob, varchar
- Right: blob, varchar
- Result: boolean