Hi,
I've a database with collation of utf8 / utf8_bin. DB have arabic text with accent chars (kasar etc). I want to search text without accent chars.
What i did is, i wrote 'like' query ...
WHERE replace(field1,0x[CODE],'') like '%[arabic text]%' --- where [CODE] is the accent char.
This is working fine when i write static utf arabic text in place of field1. But it does not replace when it run from database field.
May be db field have latin1 encoding. How can i fix / check this issue.
Thanks.