数据库
首页 > 数据库> > mysql索引设置查询

mysql索引设置查询

作者:互联网

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

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

解决方法:

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

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

标签:indexing,mysql
来源: https://codeday.me/bug/20191209/2097784.html