如何在 MySQL 中将 MyISAM 转换为 InnoDB 存储引擎?


要将 MyISAM 引擎转换为 InnoDB,我们可以使用 ALTER 命令。我们现在使用 MyISAM 引擎创建一个表。

mysql> create table MyISAMToInnoDBDemo
   -> (
   -> id int,
   -> Name varchar(100)
   -> )ENGINE=MyISAM;
Query OK, 0 rows affected (0.19 sec)

检查该表是否使用 MyISAM 引擎创建。

mysql> SELECT TABLE_NAME,ENGINE FROM information_schema.TABLES WHERE TABLE_SCHEMA = 'business' and ENGINE = 'MyISAM';

以下是显示使用 MyISAM 引擎创建的表的输出。

+-------------------------+--------+
| TABLE_NAME              | ENGINE |
+-------------------------+--------+
| studentrecordwithmyisam | MyISAM |
+-------------------------+--------+
1 row in set (0.00 sec)

我们可以使用 ALTER 命令将 MyISAM 转换为 InnoDB。

mysql> alter table MyISAMToInnoDBDemo engine=InnoDB;
Query OK, 0 rows affected (1.65 sec)
Records: 0  Duplicates: 0  Warnings: 0

检查转换。

mysql> SELECT TABLE_NAME,ENGINE FROM information_schema.TABLES WHERE TABLE_SCHEMA = 'test' and ENGINE = 'InnoDB';

以下是输出。

+--------------------+--------+
| TABLE_NAME         | ENGINE |
+--------------------+--------+
| myisamtoinnodbdemo | InnoDB |
+--------------------+--------+
1 row in set (0.00 sec)

更新日期:30-7-2019

260 浏览量

开始您的职业生涯

完成课程即可获得认证

开始学习
广告