I have the following query
SELECT txt1 FROM T1 WHERE txt1 LIKE \'_a\\%\'
will that result in answers that have any char+a+\\+whatever?
The LIKE clause allows you to find text when you don't know the exact value, such as names beginning with JO would be
LIKE 'JO%'
However, if you are search for something ending with a%, then you need to tell SQL to treat the % as part of what you are searching for. In your example, you are looking for a 3 character string, you don't care what the first letter is, but has to end with a%.