i have to compare two strings in a query like following:
SELECT *
FROM MY_TABLE
WHERE column LIKE '%keyword%';
But i want to compare unaccented values of both column
and keyword
. Is there an unaccent() function or other way to achieve this in MySQL?