0
Currently I do my search as follows:
SELECT * FROM cadastro WHERE nome LIKE '%são%'
This way does not return me a result, however, when I put only the ã
capitalized Ã
I get the result.
That’s how it works:
SELECT * FROM cadastro WHERE nome LIKE '%sÃo%'
Could you answer me how I can solve this problem?
My bank already has that encryption.
– Carlos
Within LIKE, you will use texts or concatenate with variables?
– João Paulo Araujo
In this case only text.
– Carlos