mysql 查看修改存储引擎
Posted 西瓜的夏天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 查看修改存储引擎相关的知识,希望对你有一定的参考价值。
第一种方式:
第二种方式:
创建表的时候,可以通过增加ENGINE关键字设置新建表的存储引擎。例如
create table yxm(
id bigint(20) not null auto_increment,
name char(20)
) ENGINE=MyISAM DEFAULT CHARSET= gbk;
或则
create table yxm1(
id bigint(20) not null auto_increment,
name char(20)
) ENGINE=InnoDB DEFAULT CHARSET= gbk;
修改存在表的引擎ENGINE
alter table yxm engine = innodb;
查看表的引擎,可以用 show create table yxm \\G;
以上是关于mysql 查看修改存储引擎的主要内容,如果未能解决你的问题,请参考以下文章