一、常用命令
1、查看数据库默认编码
show variables like 'character%';
show variables like ‘collation%’;
2、启动停止数据库
/etc/init.d/mysql start (stop)
3、创建数据库
create database if not exists 数据库名 default charset gbk collate gbk_chinese_ci;
4、创建数据表
create table 表名 (
......
) TYPE=MyISAM Default character set gbk
5、查看表当前字符集 show cereate table 表名; 标签:指南,show,数据库,gbk,日常,MySQL,table,variables From: https://www.cnblogs.com/caodejun/p/17027348.html