How can we exclude rows matching a text pattern?
The NOT LIKE operator filters out all records whose string values match the specified pattern.
Omitting test email accounts, excluding legacy prefix IDs, cleaning raw text datasets.
SELECT name
FROM employees
WHERE name NOT LIKE 'A%';Practice typing production-grade SQL code for NOT LIKE.