Encoding problems and solutions when mysql associates two tables

Encoding problems and solutions when mysql associates two tables

When Mysql associates two tables, an error message is generated: Illegal mix of collations

1. First use the tool to change the encoding method of the database and two tables

2. This step is very important and requires changing the encoding method of the field.

ALTER TABLE `table name` CHANGE `dev_chancode` `field` VARCHAR(32) CHARACTER SET gbk NOT NULL;

Summary: When creating a table, you must pay attention to the unified encoding method, otherwise it will be very troublesome to deal with it later.

How to solve the MySQL table encoding conversion problem

  1. Export the table structure of the data table to be exported (you can use Phpmyadmin, mysqldump, etc., it's very simple and I won't explain it in detail), then change the CHARSET=latin1 of the exported create table statement to CHARSET=utf8, execute the create table statement in the target library newdbname to build the table structure, and then start exporting and importing data. Order:
  2. ./mysqldump -d DB_Dig > /usr/local/tmp/tables.sql
  3. Command line: Enter the mysql command line, mysql -hlocalhost -uroot -p*** dbname
  4. Execute SQL select * from tbname into outfile '/usr/local/tbname.sql';
  5. Convert tbname.sql to UTF-8 format. It is recommended to use UltraEditor. You can directly use the editor's 'Convert->ASCII to UTF-8 (Unicode Editing)', or save the file as UTF-8 (without BOM) format.
  6. Execute the statement set character_set_database=utf8 in the mysql command line; Note: Set the mysql environment variable so that mysql will interpret the content of the sql file in utf8 format when reading the sql file in the next step
  7. Execute the statement load data infile 'tbname.sql' into table newdbname.tbname in the mysql command line;

The above is all the knowledge points introduced this time. Thank you for your learning and support for 123WORDPRESS.COM.

You may also be interested in:
  • Solutions to encoding problems encountered when comparing dates in MySQL
  • Mysql database encoding problem (modify database, table, field encoding to utf8)
  • Solving the Mysql5 character set encoding problem

<<:  Install JDK8 in rpm mode on CentOS7

>>:  Summary of three rules for React state management

Recommend

Nofollow makes the links in comments and messages really work

Comments and messages were originally a great way...

How to introduce scss into react project

First download the dependencies yarn add sass-loa...

MySQL: Data Integrity

Data integrity is divided into: entity integrity,...

Solution to elementui's el-popover style modification not taking effect

When using element-ui, there is a commonly used c...

A brief introduction to web2.0 products and functions

<br />What is web2.0? Web2.0 includes those ...

Looping methods and various traversal methods in js

Table of contents for loop While Loop do-while lo...

Solution to input cursor misalignment in Chrome, Firefox, and IE

Detailed explanation of the misplacement of the in...

Disable input text box input implementation properties

Today I want to summarize several very useful HTML...

A brief discussion on the mysql execution process and sequence

Table of contents 1:mysql execution process 1.1: ...

How to use Vue to implement CSS transitions and animations

Table of contents 1. The difference between trans...

Super detailed steps to install zabbix3.0 on centos7

Preface Recently, part of the company's busin...

Steps to install MySQL using Docker under Linux

As a tester, you may often need to install some s...