Find rows using wildcard patterns.
Section: Filtering Rows
Pattern matching with LIKE
sql
sql
SELECT *
FROM customers
WHERE email LIKE '%@example.com';Explanation
Use % for any-length wildcard and _ for a single character.
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 Filtering Rows