select p.*, f.*from uchome_posts pleft join uchome_postsfield f on p.pid = f.pidwhere p.tid = '1557'and p.hash = '1b622139d19b456e5ea72c8f2056021d'order by p.pid asclimit 0, 100
但是解释之后如下图:
很显然索引没有生效,求如何创建一个表关联的正确索引。
回复内容: 有sql语句:
select p.*, f.*from uchome_posts pleft join uchome_postsfield f on p.pid = f.pidwhere p.tid = '1557'and p.hash = '1b622139d19b456e5ea72c8f2056021d'order by p.pid asclimit 0, 100
但是解释之后如下图:
很显然索引没有生效,求如何创建一个表关联的正确索引。
你觉得是哪个索引没有生效?如果你指的是using filesort那么看看p.hash字段加了索引了吗,并且using file sort和索引并不一定有直接关系。可以参考这篇文章
http://www.taobaodba.com/html/235_mys...
