How to solve the DOS window garbled problem in MySQL

How to solve the DOS window garbled problem in MySQL

The garbled code problem is as follows:

The reason for the problem is very simple. It is nothing more than a deviation between the encoding of the command line and the encoding set internally in MySQL. We right-click the properties to check the encoding of the following command line, which is GBK.

solve:

mysql> show variables like 'character%'; -- Fuzzy query global variables starting with character 

  • character_set_client: The character set of the client
  • character_set_connection: Character set for the connection
  • character_set_results: character set of query results

The above three can be set to GBK respectively: set xxx = gbk ;

This can be done simply by: set names gbk ;

Of course, the above two steps are temporary and will still be the same next time you turn it on, so the graphical interface is really great.

So far, it's over:

Author: Tianqiao Baxia Source: https://www.cnblogs.com/summerday152/
This article has been included in Gitee: https://gitee.com/tqbx/JavaBlog
If you are interested, you can visit my personal website: https://www.hyhwky.com

The above is the details of how MySQL solves the DOS window garbled problem. For more information about MySQL DOS window garbled characters, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Solution to the garbled code problem in MySQL 5.x
  • Solution to the Chinese garbled code problem in the decompressed version of MYSQL
  • How to solve the problem of Chinese garbled characters when using MySQL to obtain database data
  • Example solution for writing garbled Chinese characters into MySQL in PHP
  • MySQL character set garbled characters and solutions
  • Solution to MySQL garbled code problem under Linux
  • How to deal with garbled characters in Mysql database
  • How to solve the problem of Chinese garbled characters when inserting table data into MySQL
  • Solve the problem of Chinese garbled characters when inserting data into MySQL by Tomcat under Linux
  • Summary of handling JDBC connection mysql garbled code exception problem

<<:  Analysis of the configuration process of installing mariadb based on docker

>>:  Detailed explanation of Javascript string methods

Recommend

Example code for implementing anti-shake in Vue

Anti-shake: Prevent repeated clicks from triggeri...

Detailed tutorial on compiling and installing MySQL 5.7.24 on CentOS7

Table of contents Install Dependencies Install bo...

js dynamically implements table addition and deletion operations

This article example shares the specific code for...

MySQL data insertion efficiency comparison

When inserting data, I found that I had never con...

How to start multiple MySQL databases on a Linux host

Today, let’s talk about how to start four MySQL d...

Docker builds kubectl image implementation steps

If the program service is deployed using k8s inte...

How to use JS to parse the excel content in the clipboard

Table of contents Preface 1. Paste Events and Cli...

Mysql 5.6 adds a method to modify username and password

Log in to MySQL first shell> mysql --user=root...

A brief analysis of the basic implementation of Vue detection data changes

Table of contents 1. Object change detection 2. Q...

Introduction to the usage of props in Vue

Preface: In Vue, props can be used to connect ori...

Use of Vue filters and custom instructions

Table of contents Filters 01.What is 02. How to d...

How to deploy DoNetCore to Alibaba Cloud with Nginx

Basic environment configuration Please purchase t...

js implements the algorithm for specifying the order and amount of red envelopes

This article shares the specific code of js to im...

Vue implements the shake function (compatible with ios13.3 and above)

Recently, I made a function similar to shake, usi...