Mysql 数据库 表 字段字符集修改

修改数据库字符集
alter database owl default character set utf8;

修改表字符集
alter table t_app character set utf8;

修改单个字段字符集
alter table t_app modify admin_login_name VARCHAR(50) character set utf8;

修改表所有列字符集和默认字符集
alter table t_app convert to character set utf8;

从information_schema查所有列字符集
select table_schema,table_name,table_type,engine,table_rows,table_collation from tables;

查看表字符集
SHOW TABLE STATUS FROM owl WHERE NAME='t_user_oper_log';
show create table t_user_oper_log;

查看有所字段字符集
show full columns from t_app;

查看数据库所有表引擎
show table status from owl;

显示单个表存储引擎
show create table t_user_oper_log;
show table status from owl where name='t_user_oper_log'\G;

修改表引擎
alter table t_user_oper_log engine=myisam;


你可能感兴趣的:(Mysql 数据库 表 字段字符集修改)