Characters “ي” and “ی” and the difference in persian - Mysql

前端 未结 8 1126
忘掉有多难
忘掉有多难 2020-12-23 19:56

I\'m working on a UTF-8 Persian website with integrated mysql database. All the content in the website are imported through an admin panel and it\'s all persian.

As

8条回答
  •  隐瞒了意图╮
    2020-12-23 20:14

    You must use N (meaning uNicode) before non-English characters, for example:

    REPLACE(COLUMNNAME, N'ي', N'ی')

提交回复
热议问题