Like
Pattern match comparison.
Returns true when the left string matches the SQL LIKE pattern on the right.
Category: comparison
SQL symbol: LIKE
Example
SELECT 'a' LIKE 'a';
Signatures
blob LIKE blob→ booleanblob LIKE varchar→ booleanvarchar LIKE blob→ booleanvarchar LIKE varchar→ boolean
Types
- Left: blob, varchar
- Right: blob, varchar
- Result: boolean