How to change the encoding to utf-8 in mysql version 5.7 under windows

How to change the encoding to utf-8 in mysql version 5.7 under windows

Preface

I just started learning MySQL and downloaded the latest version 5.7.14 from the official website. When I used cmd to enter Chinese, an error occurred, so I started to modify the MySQL default encoding (under Windows). Let's take a look at the detailed modification method.

Here’s how

First, view the MySQL character set information by show variables like 'character_set_%';

The default encoding is latin1

Then close the database

Find the my.ini file in the mysql installation directory

Add it

[client]
default-character-set=utf8

Add under [mysqld]

character-set-server=utf8

Restart mysql

You can change the default encoding of the MySQL database to utf-8

Many resources on the Internet are added under [mysqld]

default-character-set=utf8

If this change is made, the 5.7 version of MySQL will not be able to open

So change it to

character-set-server=utf8

Note: After the modification, all data in the database must be deleted before it can be used.

Summarize

The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Modify the default encoding of MySQL 5.5 (change the graphic steps to utf-8 encoding)
  • Solution to garbled characters when using UTF-8 Chinese encoding in MYSQL database
  • MySQL GBK → UTF-8 encoding conversion
  • The default encoding of mysql is UTF-8. You can modify my.ini to achieve this.
  • PHP page, MySQL database conversion to utf-8 garbled code, utf-8 encoding problem summary
  • Python MySQLdb inserts Chinese data using utf-8 encoding
  • Why not use UTF-8 encoding in MySQL?

<<:  Get / delete method to pass array parameters in Vue

>>:  Creating Responsive Emails with Vue.js and MJML

Recommend

Creative opening effect achieved by combining CSS 3.0 with video

Let me share with you a creative opening realized...

Summary of common Nginx techniques and examples

1. Priority of multiple servers For example, if e...

Markup language - specify CSS styles for text

Click here to return to the 123WORDPRESS.COM HTML ...

Implementation steps for installing java environment in docker

This article is based on Linux centos8 to install...

Using JavaScript to implement carousel effects

This article shares the specific code for JavaScr...

Several ways to store images in MySQL database

Usually the pictures uploaded by users need to be...

Detailed discussion of the differences between loops in JavaScript

Table of contents Preface Enumerable properties I...

Detailed description of mysql replace into usage

The replace statement is generally similar to ins...

Solution to the problem of mysql master-slave switch canal

After configuring VIP, the error message that app...

CSS navigation bar menu with small triangle implementation code

Many web pages have small triangles in their navi...