How to set utf-8 encoding in mysql database

How to set utf-8 encoding in mysql database

Modify /etc/my.cnf or /etc/mysql/my.cnf file

[client]
default-character-set = utf8
[mysqld]
default-storage-engine = INNODB
character-set-server = utf8
collation-server = utf8_general_ci

Restart mysql and use the mysql client to check the encoding

show variables like '%char%';

Use UTF-8 encoding when creating a new database

create database 'test' default character set utf8 collate utf8_general_ci;

Create a table and create fields using UTF-8 encoding

create table test (
 'id' int(10) unsigned not null auto_increment,
 'name' varchar(50) character set utf8 default '',
 primary key('id')
 ) default charset=utf8;

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Why not use UTF-8 encoding in MySQL?
  • MySQL GBK → UTF-8 encoding conversion
  • Why is UTF-8 not recommended in MySQL?

<<:  CentOS 6-7 yum installation method of PHP (recommended)

>>:  Summary of methods to clear cache in Linux system

Recommend

Detailed explanation of the use of DockerHub image repository

Previously, the images we used were all pulled fr...

HTML table markup tutorial (48): CSS modified table

<br />Now let's take a look at how to cl...

Embed player in web page embed element autostart false invalid

Recently, I encountered the need to embed a player...

Solution to CSS anchor positioning being blocked by the top fixed navigation bar

Many websites have a navigation bar fixed at the ...

The implementation of Youda's new petite-vue

Table of contents Preface Introduction Live Easy ...

Detailed explanation of pipeline and valve in tomcat pipeline mode

Preface In a relatively complex large system, if ...

Optimization of MySQL thread_stack connection thread

MySQL can be connected not only through the netwo...

In-depth understanding of Vue's method of generating QR codes using vue-qr

Table of contents npm download step (1) Import (2...

Implementation of deploying Apollo configuration center using docker in CentOS7

Apollo open source address: https://github.com/ct...

MySQL Oracle and SQL Server paging query example analysis

Recently, I have done a simple study on the data ...

Understanding MySQL clustered indexes and how clustered indexes grow

In this note, we briefly describe What is the B+T...

How to call the browser sharing function in Vue

Preface Vue (pronounced /vjuː/, similar to view) ...