Home > Database > Mysql Tutorial > mysql修改数据库的存储引擎(InnoDB)_MySQL

mysql修改数据库的存储引擎(InnoDB)_MySQL

WBOY
Release: 2016-06-01 13:04:07
Original
1065 people have browsed it

目前例子是把引擎MyISAM修改为innodb

查看当前数据库的所支持的数据库引擎以及默认数据库引擎


数据库支持的引擎和默认数据库引擎代码
show engines;


更改方式1:修改配置文件my.cnf

打开my.cnf,在[mysqld]最后添加为上default-storage-engine=InnoDB,重启数据库服务,数据库默认的引擎修改为InnoDB


更改方式2:在建表的时候指定或者建完表修改

Mysql代码
--建表的时候指定
create table mytbl(
id int primary key,
name varchar(50)
)type=InnoDB;

--建完表后修改
alter table mytbl2 type = InnoDB;


--查看修改结果(mytest为表所在的database名字)
show table status from mytest;

使用命令查看存储引擎
mysql> show variables like '%storage_engine%';你要看某个表用了什么引擎(在显示结果里参数engine后面的就表示该表当前用的存储引擎):
mysql> show create table 表名;

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template