I have a token table in Turkish; it's default collation is utf8_general_ci On FreeBSD server, mysql version is 5.6.15
I want to query;
select * from tokens where type like 'âmâ';
or
select * from tokens where type='âmâ';
With these queries, result must be one unique for 'âmâ' (it means 'blind' in Turkish also) But i have four raw result;
result 1 "amâ" means 'but'
result 2 "ama" means 'but'
result 3 "âma" means 'blind'
result 4 "âmâ" means 'blind'
that didnt i want.
I tried different collations and character sets and names. But same results with working ones.
Any help please