要为查询设置的mysql索引

时间:2010-07-17 07:51:06

标签: mysql indexing

我必须为这样的查询设置哪些索引?感谢

SELECT distinct event_dates.* FROM `event_dates` 
INNER JOIN `events` ON `events`.id = `event_dates`.event_id 
INNER JOIN `cores` ON `cores`.resource_id = `events`.id AND cores.resource_type = 'Event' 
INNER JOIN `cores_kinds` ON `cores_kinds`.core_id = `cores`.id 
INNER JOIN `kinds` ON `kinds`.id = `cores_kinds`.kind_id 
WHERE (((super_kind_en IN ('party','cinema and theater')) 
AND (day >= '2010-07-17' AND day <= '2010-08-16')) 
AND (cores.searchable like '%p%')) 
ORDER BY day, cores.vote desc LIMIT 0, 30

2 个答案:

答案 0 :(得分:3)

一般的经验法则是在过滤结果集的列上建立索引。换句话说,WHERE子句中包含的列以及执行连接的列。

对于特定查询,您可能需要参考查询的解释计划。它将向您展示MySQL如何执行查询,因此可以相应地设置索引:http://dev.mysql.com/doc/refman/5.0/en/explain.html

答案 1 :(得分:0)

我会将它们设置为

events.id
event_dates.event_id 
cores.resource_id
events.id
cores.resource_type
cores_kinds.core_id
cores.id 
kinds.id
cores_kinds.kind_id
super_kind_en
day
cores.searchable
cores.vote

因为它们都出现在JOIN,WHERE或ORDER BY子句中。