看一下mysql官方文档:https://dev.mysql.com/doc/refman/5.7/en/create-index.html ,

 mysql InnoDB引擎是否支持hash索引

 

从上面的图中可以得知,mysql 是支持hash索引的,但支持和不支持又和具体的存储引擎有关系。从图中

https://dev.mysql.com/doc/refman/5.7/en/innodb-introduction.html 。

 

表中表明,InnoDB不支持hash索引,但又给出了一个特殊的解释,

 

 

【MySQL技术内幕InnoDB存储引擎.姜承尧.扫描版】也提到了这点

 

 

mysqlInnoDB存储引擎 是支持hash索引的,不过,我们必须启用,hash索引的创建由InnoDB存储引擎引擎自动优化创建,我们干预不了。

 

 

https://blog.csdn.net/doctor_who2004/article/details/77414742

 

相关文章:

  • 2021-12-12
  • 2021-07-17
  • 2021-09-30
  • 2022-12-23
  • 2022-12-23
  • 2021-11-15
  • 2021-05-25
  • 2021-11-24
猜你喜欢
  • 2021-04-28
  • 2021-12-16
  • 2022-12-23
  • 2022-12-23
  • 2021-12-18
  • 2022-12-23
相关资源
相似解决方案