How do I get a query that brings me word that contains or does not the special character? Eg, I have this data: "NÃO" and if I search by typing "NAO", you should return this information to me. And the converse too, if I have: "ANTONIO" and I write "ANTÓNIO," ANTÓNIO should return to me. I use this code but it does not work:
SELECT * FROM PESSOA WHERE NOME like '%'+ @PROCURAR + '%'