
第 3 章 技术分享
287
`dept` tinyint(4) NOT NULL COMMENT '部门 id',
`name` varchar(30) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '用户名称',
`create_time` datetime NOT NULL COMMENT '注册时间',
`last_login_time` datetime DEFAULT NULL COMMENT '最后登录时间',
PRIMARY KEY (`id`),
KEY `ct_index` (`create_time`)
) ENGINE=InnoDB AUTO_INCREMENT=1048577 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMM
ENT='测试表'
查询 1,并未用到 ct_index(create_time) 索引:
type 为 ALL ,而不是 range
rows 行数和全表行数接近
# 查询 1
mysql> explain select * from test03 where create_time > '2021-10-01 02:04:36';
+----+-------------+--------+------------+------+---------------+------+---------+-----
-+---------+----------+-------------+
| id | select_type | table | partitions | type | possible_keys | key | key_len | ref
| rows | filtered | Extra |
+----+-------------+--------+------------+------+---------------+------+---------+-----
-+---------+----------+-------------+
| 1 | SIMPLE | test03 | NULL | ALL | ct_index | NULL | NULL | NULL |
1045955 | 50.00 | Using where |
+----+-------------+--------+------------+------+---------------+------+---------+-----
-+---------+----------+-------------+
1 row in set, 1 warning (0.00 sec)
而查询 2,则用到了 ct_index(create_time) 索引:
# 查询 2
mysql> explain select * from test03 where create_time < '2021-01-01 02:04:36';
+----+-------------+--------+------------+-------+---------------+----------+---------
+------+------+----------+-----------------------+
| id | select_type | table | partitions | type | possible_keys | key | key_len |
ref | rows | filtered | Extra |
+----+-------------+--------+------------+-------+---------------+----------+---------
+------+------+----------+-----------------------+
| 1 | SIMPLE | test03 | NULL | range | ct_index | ct_index | 5 |
NULL | 169 | 100.00 | Using index condition |
+----+-------------+--------+------------+-------+---------------+----------+---------
+------+------+----------+-----------------------+
3、获得 SQL 优化器处理信息
文档被以下合辑收录
相关文档
评论