Mysql – Why is a Full Table Scan Used Instead of an Index Scan for My Query?
I have a query that performs a count operation on a table with a specific condition. I expected that using an index would be enough to speed up the query, but the output from EXPLAIN ANALYZE indicates a full table…