现有表test,分别设置单号、条码、时间、备注、金额等字段限设置索引A:单号,B:条码,C:时间
EXPLAIN
SELECT count(*) FROM test WHERE 时间>='2018-11-14 00:00:00' AND 时间<'2018-11-15 00:00:00' group by 单号,条码;
这句Sql未使用索引 key = null key_len=null type =ALL如何优化成使用索引 !!!不使用between and 的情况下!