not like
Perform fuzzy matching on the string str, return false if it matches, and return true if it doesn’t match.
the percent sign (‘%’) represents zero, one, or more characters.
// table test
+-------+
| k1 |
+-------+
| b |
| bb |
| a |
// Return data that does not contain a in the k1 string
mysql> select k1 from test where k1 not like '%a%';
+-------+
| k1 |
+-------+
| b |
| bb |
// Return the data that is not equal to a in the k1 string
mysql> select k1 from test where k1 not like 'a';
+-------+
| k1 |
+-------+
| b |
| bb |
+-------+
LIKE, NOT, NOT LIKE