MySQL WildcardsSpecial search characters. MySQL Wildcard Characters A wildcard character is used to substitute one or more characters in a string. Wildcard characters are used with the LIKE operator. % - Represents zero or more characters _ - Represents a single character ExampleSELECT * FROM Customers WHERE City LIKE 'ber%';Try it Yourself PreviousNext