The matches pattern operator in Web Intelligence helps you filter data with pattern matching. Use it to find text that follows a specific structure when you do not know the exact value.
This operator uses two wildcard characters:
- The underscore (_) matches a single character.
- The percent sign (%) matches any sequence of zero or more characters.
For better performance, avoid starting your pattern with a wildcard (%). A leading wildcard causes the database to perform a full scan of its data, which can be slow.

Let's Summarize What You've Learned
- Use the matches pattern operator to filter data based on specific text structures, not exact values.
- The underscore (_) wildcard matches a single character; the percent sign (%) matches any sequence of characters.
- Avoid starting patterns with a percent sign (%) to improve query performance and reduce database scan times.