0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

MySQL クライアントの接続文字セットを変更する

Posted at

MySQLクライアントから、MySQLサーバーに接続した際、charactor セットが異なるために文字が表示できない場合がある。

クライアント側の文字セットを変更するには、以下の3項目を変更する。

SET character_set_client = charset_name;
SET character_set_results = charset_name;
SET character_set_connection = charset_name;

これを一行で実行するのが以下。

SET NAMES 'charset_name';

referenct:
https://dev.mysql.com/doc/refman/8.0/ja/charset-connection.html

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?