In MySQL, the percent sign (%) is used as a wildcard to represent a collection of characters in string patterns. It can match zero or more characters in a string during operations like LIKE. For example, the query SELECT * FROM table WHERE column LIKE 'A%' would return all entries in which the column starts with the letter 'A'.