Modifying the character set of a MySQL table

Source: Internet
Author: User

ALTER TABLE logtest CONVERT to CHARACTER SET UTF8 COLLATE utf8_general_ci;

To modify the database character set:

The code is as follows:
ALTER DATABASE db_name DEFAULT CHARACTER SET character_name [COLLATE ...];


Change the default character set of the table and all character columns (Char,varchar,text) to the new character set

The code is as follows:
ALTER TABLE tbl_name CONVERT to CHARACTER SET character_name [COLLATE ...]


such as: ALTER TABLE logtest CONVERT to CHARACTER SET UTF8 COLLATE utf8_general_ci;

Just modify the default character set for the table:

The code is as follows:
ALTER TABLE tbl_name DEFAULT CHARACTER SET character_name [COLLATE ...];


such as: ALTER TABLE logtest DEFAULT CHARACTER SET UTF8 COLLATE utf8_general_ci;

To modify the character set of a field:

The code is as follows:
ALTER TABLE tbl_name Change c_name c_name CHARACTER SET character_name [COLLATE ...];


such as: ALTER TABLE logtest Change title title VARCHAR (CHARACTER) SET UTF8 COLLATE utf8_general_ci;

To view the database encoding:

The code is as follows:
SHOW CREATE DATABASE db_name;


To view the table encoding:

The code is as follows:
SHOW CREATE TABLE tbl_name;


To view field encodings:

The code is as follows:
SHOW full COLUMNS from Tbl_name;

Modifying the character set of a MySQL table

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.