I have a string: A%A
I want to find all string same start with A%A in database.
Example:
AABCD - false
AABCE - false
AA%BC - true
I use the sql statement:
Select * from Tabel where Column like 'AA%B%'
But the result are:
AABCD
AABCE
AA%BC
Because the string include wildcard '%' and postgres select wrong.
Please suggest me a solution