存储引擎

Posted nanjo4373977

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了存储引擎相关的知识,希望对你有一定的参考价值。

一、什么是存储引擎?

存储引擎就是表的类型

二、查看mysql支持的存储引擎

show engines;

三、指定表类型(即存储引擎)

create table t1(id int)engine=‘innodb‘;

create table t2(id int)engine=memory;

create table t3(id int)engine=blackhole;

create table t4(id int)engine=myisam;

技术图片

 

insert into t1 value(1);

 

以上是关于存储引擎的主要内容,如果未能解决你的问题,请参考以下文章

MySQL存储引擎介绍

mysql存储引擎

存储引擎

Mysql存储引擎Myisam小结

什么是MySQL存储引擎?

MySQL(十六)—— 存储引擎