Mysql modifying character set statements

Source: Internet
Author: User

Modify the database character set: [SQL] ALTER DATABASE db_name DEFAULT CHARACTER SET character_name [COLLATE...]; change the default character set and all CHARACTER columns (CHAR, VARCHAR, TEXT) of the table to the new character set: [SQL] ALTER TABLE tbl_name CONVERT TO CHARACTER SET character_name [COLLATE...] for example, alter table logtest convert to character set utf8 COLLATE utf8_general_ci; only modify the default character set of the TABLE: www.2cto.com [SQL] ALTER TABLE tbl_name DEFAULT CHARACTER SET character_name [COLLATE...]; for example, alter table logtest default character set utf8 COLLATE utf8_general_ci; modify the character set of a field: [SQL] ALTER TABLE tbl_name CHANGE c_name CHARACTER SET character_name [COLLATE...]; for example, alter table logtest CHANGE title VARCHAR (100) character set utf8 COLLATE utf8_general_ci; view DATABASE encoding: [SQL] SHOW CREATE DATABASE db_name; view TABLE encoding: [SQL] show create table tbl_name; view field encoding: [SQL] SHOW FULL COLUMNS FROM tbl_name; www.2cto.com restart Mysql service in Windows after modifying the character set: start-> Run-> cmd stop: net stop mysql start: net start mysql prerequisites MYSQL has been installed as a windows service Linux: 1. startup method 1. start with service: service mysqld start2, start with mysqld Script:/etc/inint. d/mysqld start3. Start with safe_mysqld: safe_mysqld & 2. Stop www.2cto.com 1. Start with service: service mysqld stop2. Start with mysqld Script:/etc/inint. d/mysqld stop3, mysqladmin shutdown 3, restart 1, start with service: service mysqld restart2, start with mysqld Script:/etc/inint. d/mysqld restart author huxiweng

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.