I have the following query:
SELECT * FROM main_creditperson WHERE name="Irene Olga López"
This will reutrn:
id name
366354 Irene Olga López
Is there a simple way to do this in the query so the result is removed of all accents?
id name
366354 Irene Olga Lopez
You can try to create a function to replace accents to a normal word.
Schema (MySQL v5.6)
Query #1
View on DB Fiddle
function Reference