Hi,
I would like to map foreign characters, especially Turkish characters, to their Latin-1 equivalent in Mysql.
For example,
Select name FROM users WHERE id = 1
Result = Çakır
but I would like to get it as:
Cakir
or
Özel -> Ozel
There are couple of Turkish characters and they all have Latin-1 equivalents. ( http://webdesign.about.com/od/localization/l/blhtmlcodes-tr.htm )
How can I do that in Mysql by using SQL query? I am also ok with manual mapping since this query will be run couple of times in a day, so the performance impact is not important at this moment.
Thanks in advance,