EXPLAIN
SELECT * from user_info
where create_date >= '2021-02-01 00:00:00' and create_date <= '2021-03-01 23:59:59'
查询结果超过五分之一时,type=ALL。但在以下时就使用到索引。
EXPLAIN
SELECT * from user_info
where create_date >= '2021-02-01 00:00:00' and create_date <= '2021-03-01 23:59:59'
查询结果超过五分之一时,type=ALL。但在以下时就使用到索引。