SQL LIKE Pattern Tester
Test a LIKE pattern (% = any sequence, _ = any single character) against sample strings. Runs entirely in your browser.
How to use:
- Enter a LIKE pattern with % (any sequence) and _ (single char) wildcards
- Optionally toggle case-sensitivity
- Add your test strings (one per line)
- See instant match results as you type
LIKE case-sensitivity varies by database — PostgreSQL's LIKE is case-sensitive by default (use ILIKE for insensitive), MySQL usually isn't.
Results
Alice JohnsonNo match
alice.j@example.comNo match
Bob SmithMatch
Bobby TablesMatch
Carol_AnnNo match
2024-03-11No match
Order #10234No match
Equivalent regex: ^Bob.*$