MySQL 删除数据时是否会利用索引?

mysql 删除数据时是否会利用索引?

mysql 删除数据时是否利用索引

问题描述:

在拥有 (sex, city) 联合索引的 user 表中,删除指定性别和城市的数据时,是否会使用该索引?

答案:

mysql 中,如果删除操作涉及的数据量超过 20%,将不会使用索引。否则,会使用索引。

实践验证:

假设数据总量为 1602,删除满足 sex="女"、city="广州" 条件的数据,涉及数据量为 604。

explain delete from test_del_idx where sex="女" and city = "广州";

执行结果:

+---------+---------+--------------+------------+------+---------------+------+---------+------+------+----------+-------------+
| id      | select_type | table        | partitions | type | possible_keys | key  | key_len | ref  | rows | filtered | extra       |
+---------+---------+--------------+------------+------+---------------+------+---------+------+------+----------+-------------+
| 1       | delete      | test_del_idx | null       | all  | idx_sex_city  | null | null    | null | 1602 |   100.00 | using where |
+---------+---------+--------------+------------+------+---------------+------+---------+------+------+----------+-------------+

由于删除数据量超过了 20%,因此未走索引。

再假设删除满足 sex="女"、city="惠州" 条件的数据,涉及数据量为 6。

explain delete from test_del_idx where sex="女" and city = "惠州";

执行结果:

+---------+---------+--------------+------------+-------+---------------+--------------+---------+-------------+------+----------+-------------+
| id      | select_type | table        | partitions | type  | possible_keys | key          | key_len | ref         | rows | filtered | Extra       |
+---------+---------+--------------+------------+-------+---------------+--------------+---------+-------------+------+----------+-------------+
| 1       | DELETE      | test_del_idx | NULL       | range | idx_sex_city  | idx_sex_city | 773     | const,const |    6 |   100.00 | Using where |
+---------+---------+--------------+------------+-------+---------------+--------------+---------+-------------+------+----------+-------------+

由于删除数据量少于 20%,因此走索引。

以上就是MySQL 删除数据时是否会利用索引?的详细内容,更多请关注其它相关文章!