Context
I needed to find users by part of a phone number and had to confirm the correct LIKE pattern.
Patterns
- `mobile like "4558%"` finds values that start with 4558.
- `mobile like "%4558"` finds values that end with 4558.
- `mobile like "%4558%"` finds values that contain 4558.