Mysql table, field, library character set modification and view method _mysql

Source: Internet
Author: User

To modify the database character set:

Copy Code code as follows:

ALTER DATABASE db_name DEFAULT CHARACTER SET character_name [COLLATE ...];

change the table default character set and all character columns (Char,varchar,text) to the new character set:
Copy Code code 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:

Copy Code code 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:

Copy Code code 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 (m) CHARACTER SET UTF8 COLLATE utf8_general_ci;

To view the database encoding:

Copy Code code as follows:

Show CREATE DATABASE db_name;

View Table encoding:
Copy Code code as follows:

Show CREATE TABLE tbl_name;

To View the field encoding:
Copy Code code as follows:

Show full COLUMNS from Tbl_name;

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.