I have the below query in which the where condition uses edge_server column. I have defined the edge_server column as index, however the explain statement is showing that full table scan is performed without using the index, why is it so?
SELECT
SUM(`cre_kpi`.`attempts`) AS `attempts__sum`,
SUM(`cre_kpi`.`asr`) AS `asr__sum`,
SUM(`cre_kpi`.`ner`) AS `ner__sum`,
SUM(`cre_kpi`.`cranckbackCount`) AS `cranckbackCount__sum`
FROM `cre_kpi`
WHERE (`cre_kpi`.`edge_server` like 'AFTEC1')