My SQL Query:
SELECT *
FROM updates_cats
WHERE uid =118697835834
ORDER BY created_date ASC
Current Indexes:
index1(uid, created_date)
EXPLAIN EXTENDED result:
1 SIMPLE updates_cats ref index1 index1 8 const 2 100.00 Using where
How can i fix the Extra field where it has Using where so it can use the indexes instead?
EDIT: SHOW CREATE TABLE:
CREATE TABLE `updates_cats` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`u_cat_id` bigint(20) NOT NULL DEFAULT '0',
`uid` bigint(20) NOT NULL,
`u_cat_name` text COLLATE utf8_unicode_ci NOT NULL,
`total_updates` int(11) unsigned NOT NULL DEFAULT '0',
`created_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `index1` (`uid`,`created_date`)
) ENGINE=MyISAM AUTO_INCREMENT=23522 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
The only thing that would be better than
Using whereisUsing where; Using indexwith a “covering index”. Try selecting justuidandcreated_date.Using whereis fine. It means it’s applying the indicated index to theWHEREclause and reducing the rows returned. To get rid of it, you’d have to get rid of theWHEREclause.Here are things that you should be concerned about:
Using filesortUsing temporaryNULLin the ‘key’ column of theEXPLAINand a large number of rows in the ‘rows’ column.Your
EXPLAINresult shows that MySQL is applyingindex1to theWHEREclause and returning 2 rows: