MySQL Forums
Forum List  »  Optimizer & Parser

Re: Why MySQL does not use an index?
Posted by: Rick James
Date: January 19, 2012 12:25AM

SELECT  COUNT(`id`)
    FROM  `events`
    WHERE  `type` = 'CheckoutEvent'
      AND  `device_ip` = '62.103.172.179'
      AND  created_at > '2012-01-14 07:33:45';

That query needs either of these:
INDEX(type, device_ip, created_at)
INDEX(device_ip, type, created_at)
No other INDEX will perform as well.

Don't use COUNT(id) when COUNT(*) would do. Since id is the PRIMARY KEY, it is necessarily NOT NULL. Hence there is no need to check for NULL, which is what COUNT(id) does.

Note, in particular, INDEX(type, device_ip, created_at) is _not_ the same as
INDEX(type), INDEX(device_ip), INDEX(created_at)

Please use SHOW CREATE TABLE instead of DESCRIBE. The latter does not show the Engine or the charset you are using.

If device_ip is an IP address, I recommend you use VARBINARY(39); that will handle both IPv4 and the new IPv6.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Why MySQL does not use an index?
1264
January 19, 2012 12:25AM
1164
February 10, 2012 09:50AM
1273
February 11, 2012 10:48PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.