Match a string using wildcard patterns.
Section: basic selects
Search using LIKE
sql
sql
SELECT id, email FROM users WHERE email LIKE '%@example.com';Explanation
For large datasets, full-text or prefix-specific search patterns may be more efficient.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing basic selects