mysql 优化问题 Using where; Using filesort
程序员文章站
2022-05-16 22:42:21
...
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,请高手指点。
再问下用inner join或left join如何得到上面的查询再查询结果。
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
如果主键userid与agentid联合索引就会出现 Using where; Using index
怎么都去不掉 Using where; Using filesort,请高手指点。
回复讨论(解决方案)
userid 是主键,干嘛还要 group by userid ??
主键必须唯一,再 group 就画蛇添足了
userid 是主键,干嘛还要 group by userid ??
主键必须唯一,再 group 就画蛇添足了
再问下用inner join或left join如何得到上面的查询再查询结果。
再查询结果 是什么意思?
inner join 和 left join 有不同的结果集,不能用 或 并列起啦
再查询结果 是什么意思?
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 级以内,这样也凑合
推荐阅读
-
MYSQL ERROR 1045 (28000): Access denied for user (using password: YES)问题的解决
-
MYSQL ERROR 1045 (28000): Access denied for user (using password: YES)问题的解决
-
win10下MySQL 8.0登录Access denied for user‘root’@‘localhost’ (using password: YES)问题的解决方法
-
[MySQL] explain中的using where和using index
-
ERROR 1045 (28000): Access denied for user 'xxx'@'localhost' (using password: YES) MYSQL 新建用户 无法登录 问题解决方法
-
mysql 1064 USING BTREE问题_MySQL
-
mysql优化索引――Using filesort_MySQL
-
MYSQL数据库连接问题: MySQL 4.1+ using the old insecure authentication
-
MYSQL数据库连接问题: MySQL 4.1+ using the old insecure authentication
-
win10下MySQL 8.0登录Access denied for user‘root’@‘localhost’ (using password: YES)问题的解决方法