Subject Re: [firebird-support]escaping LIKE wild cards
Author Ann W. Harrison
Nathan Jobe wrote:
>
> How do you add a literal % sign to your SQL queries and not have it take as
> a wildcard ?

The SQL LIKE operator includes an optional escape clause:

where xyz like '#%1' escape '#'

That's equivalent to

where xyz = '%1'


Regards,


Ann