Solution to the problem that MySQL in Windows system cannot input and display Chinese

Solution to the problem that MySQL in Windows system cannot input and display Chinese

Step 1: Use Notepad to open the "my.ini" file in the MySQL installation directory.

# MySQL client library initialization.
[client]
port=3306
[mysql]
default-character-set=utf8

Check if default-character-set is utf8, if not, just change it to utf8! (Previous versions may not have this sentence, so just add it!)

Step 2: Enter in the MySQL database cmd: show variables like'%char% ';

This is what it looks like after successful setup.

Step 3:

set character_set_database=utf8;
set character_set_server=utf8;
set character_set_client=gbk;
set character_set_connection=gbk;

This is the configuration to insert Chinese characters. You must enter these commands in cmd to run mysql.

Step 4:

set character_set_results=gbk

This is the configuration to display Chinese. Done

Next, I will share a graphic operation method

#Solve the problem that mysql cannot input Chinese characters

Modify the mysql character set and modify the configuration file my.ini
character_set_server = utf8
Centered image:

insert image description here 2.

We have already established the database, and now we also need to change the database character set in Navicat for MySQL. Right-click the database and select Database Properties, as shown in the figure. After entering, change the character set to utf8

insert image description here 3. You also need to right-click each table and select the involved table;

Then in "Options", modify the character set of the table.

insert image description here 4.

Enter the design table, click on a field, and find that the data type is still Latin1. OK, just change it one by one.

insert image description here
5. It’s done perfectly, you can try it now.

Summarize

The above is the solution to the problem that MySQL on the window system cannot input or display Chinese. I hope it will be helpful to everyone. If you have any questions, please leave me a message and I will reply to you in time!

You may also be interested in:
  • How to solve the problem of garbled Chinese characters displayed in the MySQL client output window
  • mysql odbc character set setting (Chinese characters are displayed in garbled characters)
  • MySQL cannot display Chinese and its solution

<<:  Nginx merges request connections and speeds up website access examples

>>:  Writing Snake Game with Native JS

Recommend

How to build your own Angular component library with DevUI

Table of contents Preface Creating a component li...

Let you understand how HTML and resources are loaded

All content in this blog is licensed under Creati...

JavaScript data visualization: ECharts map making

Table of contents Overview Precautions 1. Usage 2...

Sample code for achieving small triangle border effect with pure CSS3+DIV

The specific code is as follows: The html code is...

Details of the underlying data structure of MySQL indexes

Table of contents 1. Index Type 1. B+ Tree 2. Wha...

Summary of three methods of lazy loading lazyLoad using native JS

Table of contents Preface Method 1: High contrast...

Detailed example of concatenating multiple fields in mysql

The MySQL query result row field splicing can be ...

What is BFC? How to clear floats using CSS pseudo elements

BFC Concept: The block formatting context is an i...

An article to understand what is MySQL Index Pushdown (ICP)

Table of contents 1. Introduction 2. Principle II...

Will the index be used in the MySQL query condition?

When an employer asks you whether an index will b...

mysql command line script execution example

This article uses an example to illustrate the ex...

WeChat applet implements jigsaw puzzle game

This article shares the specific code for impleme...