码迷,mamicode.com
首页 > 数据库 > 详细

mysql 查看修改存储引擎

时间:2017-04-15 21:33:23      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:com   技术   inno   not   null   tab   src   技术分享   mysq   

第一种方式:

技术分享

第二种方式:

技术分享

 

 创建表的时候,可以通过增加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 查看修改存储引擎

标签:com   技术   inno   not   null   tab   src   技术分享   mysq   

原文地址:http://www.cnblogs.com/yangxuming/p/6715770.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!