Understanding LIKE Wildcards in MySQL

Posted on Feb 19, 2024

Understanding LIKE Wildcards in MySQL

In MySQL, the LIKE operator supports two wildcard characters for pattern matching. The underscore _ represents a single character, while the percent sign % matches multiple characters.

Example usage:

SELECT * FROM users WHERE name LIKE 'J_n%';

This query matches names like “Jon”, “Jen”, or “Janet” but not “Jeans”. Understanding these wildcards can help refine search queries efficiently.