mysql5.5怎么修改数据库引擎
发布网友
发布时间:2022-04-30 00:15
我来回答
共1个回答
热心网友
时间:2022-04-30 01:44
更改方式1:修改配置文件my.ini
将my-small.ini另存为my.ini,在[mysqld]最后添加为上default-storage-engine=InnoDB,重启服务,数据库默认的引擎修改为InnoDB
更改方式2:在建表的时候指定或者建完表修改
Mysql代码 收藏代码
--建表的时候指定
create table mytbl(
id int primary key,
name varchar(50)
)type=MyISAM;
--建完表后修改
alter table mytbl2 type = InnoDB;
--查看修改结果(mytest为表所在的database名字)
show table status from mytest;