|
Use the ESCAPE keyword to define escape characters. In the pattern, when the escape character is placed before the wildcard, the wildcard is interpreted as a normal character. For example, to search for strings that contain 15% of the string anywhere, use:
WHERE ColumnA LIKE'%15/%%' ESCAPE'/' |
|