Hi, guys!
I'm working with project on exporting data from text files to mysql database Text files contain both latin and cyrillic alphabets. Here is the bug:
select * from cues where data="ГЭС";
+------+------+
| id | data |
+------+------+
| 1872 | АЭС |
| 4671 | ГЭС |
+------+------+
Why I get "АЭС" also? The same result having "ВЭС", "БЭС" in query, but not "ФЭС" (i don't have these values in the table, but in case of "ВЭС", "БЭС" the query returns the same result as for "ГЭС", in case of "ФЭС" it doesnt return anything).
My only opinion is that the problem is with encoding.