It makes no sense to use an index, unless the title exactly 'The' very often.
Since almost every row should be selected, you get nothing from using the index. Actually, it can be expensive to use an index, which is probably determined by your MySQL engine, so it prefers not to use an index.
Compare the amount of work done in the following two situations:
Using the index:
1) Read the entire index tree in memory.
2) Find the index tree for "The" and filter these entries.
3) Read each row, with a few exceptions (which are probably in the same blocks on the disk as the rows you want to read, so really the whole table is likely to be read) from the table into memory.
Without index:
1) Read each line in memory and, while reading them, filter out any where title = 'The' from the result set
Paulpro
source share