Hello!

He created a database on MySQL, but he does not accept Russian letters. Even a simple SELECT 'pi-pi-pi' FROM dual shows "??? - ???".

Tried all sorts SET NAMES 'cp1251' - does not help.

What to do?

  • Even a simple SELECT 'pi-pi-pi' FROM dual shows "??? - ???". What, even in the mysql.exe window? - Akina
  • "Tried all sorts SET NAMES 'cp1251' - does not help." Just do not need to work with the coding cf 1251, work with utf8. Bring everything to the same encoding. Starting from the encoding of the file and ending with the encoding of the table field. - user216615

0