如何在 MySQL 中安装或启用 innoDB?


为在 MySQ 中启用 innoDB,您需要反复检查 my.ini 文件。但是,在 MySQL 8 版本中,默认存储引擎为 innoDB。从 my.ini 文件中确认相同的内容 −

您甚至可以在创建表时设置 −

mysql> create table DemoTable
   (
   StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   StudentFirstName varchar(100),
   StudentLastName varchar(100),
   StudentAge int
   ) ENGINE=InnoDB;
Query OK, 0 rows affected (1.66 sec)

现在让我们运行一个查询,以检查特定表引擎的类型 −

mysql> select table_name,engine from information_schema.tables where table_name="DemoTable";

这将生成以下输出 −

+--------------+--------+
| TABLE_NAME   | ENGINE |
+--------------+--------+
| DemoTable    | InnoDB |
+--------------+--------+
1 row in set (0.16 sec)

更新于: 22-8-2019

1 千 + 浏览量

开启你的职业生涯

完成课程即可获得认证

开始
广告