MySQL LIKE operator with NOT operator
The MySQL allows you to combine the NOT operator with the LIKE operator to find string that does not match a specific pattern.
Suppose you want to search for employee whose last name does not start with character B, you can use the NOT LIKE with the pattern as the following