aaron-agu
一般情况下,mysql会默认提供多种存储引擎,你可以通过下面的查看:

看你的mysql现在已提供什么存储引擎:
mysql> show engines;

看你的mysql当前默认的存储引擎:
mysql> show variables like \'%storage_engine%\';

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

分类:

技术点:

相关文章:

  • 2021-11-23
  • 2021-11-23
  • 2022-01-01
  • 2022-01-08
  • 2021-12-26
猜你喜欢
  • 2021-11-23
  • 2021-11-23
  • 2021-12-23
  • 2022-12-23
  • 2021-11-23
  • 2021-12-13
相关资源
相似解决方案