0

I use : Ûû-Şş-Çç-Êê-Îî + [A-z] in Mysql database[Kurdish Alphabet].

The problem is that when I search for something like :

select * from test where col like '`ç`%'

The results is like:

ç= c , û= u , ş= s , î= i , ê= e

What collation or trick should I use to avoid this problem?

Amed
  • 53
  • 5

1 Answers1

0

Use ... collate utf8_bin:

select * from test where col like 'ç%' collate utf8_bin;

See this post and this Fiddle as well.

Community
  • 1
  • 1
Trinimon
  • 13,839
  • 9
  • 44
  • 60