1、查询语句中所需的列在索引中,这样查询结果就可以在索引的数据结构中找到。
2、由于覆盖索引可以减少树木的搜索次数,显著提高查询性能,因此使用覆盖索引是一种常用的性能优化方法。
实例
+----+-------------+------------+------+-----------------------+--------------+---------+-------+------+-------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+-------------+------------+------+-----------------------+--------------+---------+-------+------+-------------+ | 1 | SIMPLE | user_group | ref | group_id,group_id_uid | group_id_uid | 4 | const | 5378 | Using index | +----+-------------+------------+------+-----------------------+--------------+---------+-------+------+-------------+
以上是mysql覆蓋索引是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!