mysql
文章平均质量分 92
mysql 数据库知识
Dreamer who
=== Happiness isn't something you experience; it's something you remember.
展开
-
mysql InnoDB引擎支持hash索引吗
mysql InnoDB引擎支持hash索引吗 查一下mysql官方文档:https://dev.mysql.com/doc/refman/5.7/en/create-index.html,从上面的图中可以得知,mysql 是支持hash索引的,但支持和不支持又和具体的存储引擎有关系。从图中,看到InnoDB是支持Btree索引,这是我们众所周知的。我原创 2017-08-19 20:33:52 · 30107 阅读 · 8 评论 -
mysql如何处理无效的数据值
mysql如何处理无效的数据值mysql对插入的数据有时候不是我们意料中的,这不是bug,是mysql固有的设计。3.3 How MySQL Handles Invalid Data ValuesHistorically, the dominant principle for data handling in MySQL has been,“Garbage in, ga原创 2017-06-21 22:47:09 · 1382 阅读 · 0 评论