Type of created is "datetime" as mentioned in my post.
Explain result:
Code:
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE site_articles index PRIMARY,type,approved created 9 NULL 15 Using where
Table structure:
Code MySQL:
CREATE TABLE `site_articles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`authorid` int(10) unsigned NOT NULL DEFAULT '2',
`title` varchar(80) CHARACTER SET utf8 DEFAULT NULL,
`created` datetime DEFAULT NULL,
`type` tinyint(2) unsigned NOT NULL DEFAULT '0',
`approved` tinyint(1) unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `created` (`created`),
KEY `type` (`type`),
KEY `approved` (`approved`),
FULLTEXT KEY `title` (`title`)
) ENGINE=MyISAM AUTO_INCREMENT=15936 DEFAULT CHARSET=utf8 COLLATE=utf8_bin PACK_KEYS=1
Bookmarks