Last active
October 11, 2025 15:43
-
-
Save Gogetter/e230588f29e46a21ab0c240b409d5714 to your computer and use it in GitHub Desktop.
StringMatcher options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Matching | Logical result | |
|---|---|---|
| DEFAULT (case-sensitive) | first_name = ? | |
| DEFAULT (case-insensitive) | lower(first_name) = lower(?) | |
| EXACT (case-sensitive) | first_name = ? | |
| EXACT (case-insensitive) | first_name = lower(?) | |
| STARTING (case-sensitive) | first_name like ? + '%' | |
| STARTING (case-insensitive) | loewer(first_name) like lower(?) + '%' | |
| ENDING (case-sensitive) | first_name like '%' + ? | |
| ENDING (case-insensitive) | lower(first_name) like '%' + lower(?) | |
| CONTAINING (case-sensitive) | first_name like '%' + ? + '%' | |
| CONTAINING (case-insensitive) | lower(first_name) like '%' + lower(?) + '%' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment