Reputation: 1
select *from REPT_AIR_PRY_HY1 RAP where
(RAP.DATE_OF_ISSUE) BETWEEN "2017-10-01" AND DATE_ADD("2017-10-31", INTERVAL 1 DAY)
the explain plan of this query gives me 337243 but data s between these dates is only 55209 and there is even index is created on column DATE_OF_ISSUE . So, why it is scanning the whole table? thanks in advance
Upvotes: -1
Views: 48
Reputation: 142518
Some possibilities:
ANALYZE TABLE
.To discuss further, please provide SHOW CREATE TABLE
.
Upvotes: 0