LIKE Predicate Escape Character
{escape 'escape-character'}
where escape-character is any character supported by the data source.
For more information on the LIKE escape sequence, see “Like Escape Sequence” in Appendix C, “SQL Grammar.”
For example, the following SQL statements create the same result set of
customer names that start with the characters “%AAA”. The first statement uses the
escape-sequence syntax. The second statement uses the native syntax for Microsoft
Access and is not interoperable. Note that the second percent character in
each LIKE predicate is a wild card that matches zero or more of any character.
SELECT Name FROM Customers WHERE Name LIKE '[%]AAA%'