Home >Backend Development >PHP Tutorial >mysql 优化问题 Using where; Using filesort

mysql 优化问题 Using where; Using filesort

WBOY
WBOYOriginal
2016-06-23 13:13:101662browse





explain select userid from team_enewsmember where agentid in(select userid from team_enewsmember where agentid='2' and levelid>=1 group by userid) and levelid>=1 group by userid

如果主键userid与agentid联合索引就会出现 Using where; Using index

怎么都去不掉 Using where; Using filesort,请高手指点。


回复讨论(解决方案)

userid 是主键,干嘛还要 group by userid ??
主键必须唯一,再 group 就画蛇添足了

userid 是主键,干嘛还要 group by userid ??
主键必须唯一,再 group 就画蛇添足了

感谢哈!去掉后就只有Using where了

再问下用inner join或left join如何得到上面的查询再查询结果。

再查询结果 是什么意思?
inner join 和 left join 有不同的结果集,不能用   并列起啦

再查询结果 是什么意思?
inner join 和 left join 有不同的结果集,不能用   并列起啦

mysql子查询语句改成inner join 或 left join

才发现你查的是同一张表
那自连接不就可以了吗?

才发现你查的是同一张表
那自连接不就可以了吗?

是同一个表,请问向这种情况自连接该怎么写,麻烦给个范例。自己写了一个不行,所以就没用。

大致这样吧

select userid  from team_enewsmember a, team_enewsmember b  where a.agentid=b.userid and b.agentid='2' and b.levelid>=1 and a.levelid>=1

大致这样吧

select userid  from team_enewsmember a, team_enewsmember b  where a.agentid=b.userid and b.agentid='2' and b.levelid>=1 and a.levelid>=1


select a.userid from team_enewsmember as a,team_enewsmember as b where a.userid=b.userid and b.agentid='2' and b.levelid>=1
select  a.userid 谢谢!这样可以了,第三级节点以及第四级怎么查,第三级把自连接作为子查询吗?
2的第一个节点3 
3的第一个节点4,
4的第一个节点5

你是查级联数据吗?那要用递归,或修改数据结构
如果只是固定的 4 级以内,这样也凑合

你是查级联数据吗?那要用递归,或修改数据结构
如果只是固定的 4 级以内,这样也凑合

是的,需要根据查出来的userid再查询每级userid相关的其他数据。不过这样可以了,谢谢哈!
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn