What type of wildcards have you used?

首先说下什么是 wildcards

Wildcards are special characters that allow matching string without having exact match.

SQL 通配符必须与 LIKE 运算符一起使用

% 替代一个或多个字符

_ 仅替代一个字符

[charlist] 字符列中的任何单一字符

[^charlist]
或者
[!charlist]
不在字符列中的任何单一字符