私はテーブルを持つUTF8 InnoDB dbを持っています.「words」と言います:
> desc words;
+-------+-------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| name | varchar(50) | NO | UNI | NULL | |
+-------+-------------+------+-----+---------+----------------+
そしてクエリを実行すると
select * from word where name = 'Télécom';
説明できない奇妙な結果が得られます。
+------+---------+
| id | name |
+------+---------+
| 4980 | telecom |
+------+---------+
前もって感謝します!