How can I search for literal wildcard characters in a string? For example, SQL interprets an underscore as any single character, but I need to find an actual underscore character.
I need to find strings matching this format, where ONLY the % sign is a wildcard:
%_US_ %_%_%.pdf
Thanks!