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