Всем здравствуйте! После load data infile "D:/games/text.txt" ignore into table for_upload charset utf8 fields terminated by ',' ignore 1 lines; ввожу mysql> select*from for_upload; +----+----------+------------+----------+---------------+ | id | first | second | third | fourth | +----+----------+------------+----------+---------------+ | |аз | два | три | четыре | 2 | пять | шесть | семь | восемь | +----+----------+------------+----------+---------------+ Но mysql> select*from for_upload where first='один'; и mysql> select*from for_upload where id=1; выводит результат +----+----------+--------+--------+---------------+ | id | first | second | third | fourth | +----+----------+--------+--------+---------------+ | |дин | два | три | четыре +----+----------+--------+--------+---------------+ Если text.txt без кириллицы то: +----+-------+--------+-------+--------+ | id | first | second | third | fourth | +----+-------+--------+-------+--------+ |1 | one | two | three | four | 2 | five | six | seven | eight | +----+-------+--------+-------+--------+ Можно ли это исправить, или это баг при выводе результатов. Все запросы работают. За ранее спасибо)