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