I'm trying to run the following Query:
select codigo from cliente where codigo ilike '%99.999.999%';
I found that by putting ilike
, it would ignore everything, points and accents but I was wrong.
In my system, I have a query screen where I prefer that the user does not have to enter the points ... When he searches for a CPF for example
Detail: I use this query in a TextChanged of a TextBox
How could I do this query to ignore the points?