The MySQL LIKE Operator
The LIKE
operator is used in a
clause to search for a specified pattern in a column.
WHERE
There are two wildcards often used in conjunction with the
operator:
LIKE
- The percent sign (%) represents zero, one, or multiple characters
- The underscore sign (_) represents one, single character
The percent sign and the underscore can also be used in combinations! Continue reading MySQL LIKE Operator