gpt4 book ai didi

mysql - 我怎样才能使这个 mysql 查询更有效并运行得更快?

转载 作者:太空宇宙 更新时间:2023-11-03 12:03:07 25 4
gpt4 key购买 nike

这是我的 mysql 查询(3 个嵌套的 Select 语句):

SELECT * FROM emotions 
WHERE
( randomid IN
(
SELECT idpost
FROM p_n_relation
WHERE idnetwork IN
(
SELECT id
FROM networks
WHERE name = 'Babblenow'
AND isActive = 1
AND isDeleted = 0
)
AND isActive = 1 AND isDeleted = 0
) AND isActive = 1
AND isDeleted =0
AND onid = '0' AND type = 0
)ORDER BY rating DESC

每个表 emotions、p_n_relations 和 networks 包含大约 10k 行。
此查询执行时间超过 30 秒,并在运行时挂起服务器!
有没有更有效的方法来做我想做的事情?大公司如何设法在几秒钟内做到这一点?

编辑 -确切地说:
p_n_relations 中的行数:5774networks:9emotions:427而这个查询花费了 125.6770 秒

我的数据库结构:
情绪表、网络表、P_n_relation 表依次。
http://imgur.com/bmEEavH,d3iE6Lg,twXMWU9

最佳答案

试试这个:

SELECT emotions.* FROM emotions
LEFT JOIN p_n_relation ON (p_n_relation.idpost = emotions.randomid)
LEFT JOIN networks ON (networks.id = p_n_relation.idnetwork)
WHERE
(networks.name='Babblenow') AND (networks.isActive = 1) AND (networks.isDeleted = 0) AND
(p_n_relation.isActive = 1) AND (p_n_relation.isDeleted = 0) AND
(emotions.isActive = 1) AND (emotions.isDeleted = 0) AND (emotions.onid = '0') AND (emotions.type = 0)
ORDER BY emotions.rating DESC

根据您发布的表结构,我建议对 emotions.randomid 和 p_n_relation.idpost 使用相同的字段类型(现在是 varchar(40) 和 varchar(50))。除此之外,在 emotions.randomid、p_n_relation.idpost、networks.id 和 p_n_relation.idnetwork 上放置指标。正如其他人建议的那样,尝试也在 networks.name 上创建索引。之后,尝试逐步构建您的查询。

首先,从情绪中选择情绪。*但不要使用位置和时间。它应该很快,如果不是你的 MySQL 配置有一些大问题。

SELECT emotions.* FROM emotions;

如果它很快,就加入 p_n_relation,但不要使用 where。

SELECT emotions.*, p_n_relation.* FROM emotions
LEFT JOIN p_n_relation ON (p_n_relation.idpost = emotions.randomid);

如果你有正确的索引,它也应该很快。如果不是,请尝试解释它:

EXPLAIN SELECT emotions.*, p_n_relation.* FROM emotions
LEFT JOIN p_n_relation ON (p_n_relation.idpost = emotions.randomid);

您可以阅读 here关于 EXPLAIN 输出,但您也可以将其发布到您的问题中。

所以如果它仍然很快,加入第 3 个表就可以了:

SELECT emotions.*, p_n_relation.* FROM emotions
LEFT JOIN p_n_relation ON (p_n_relation.idpost = emotions.randomid)
LEFT JOIN networks ON (networks.id = p_n_relation.idnetwork);

测试、测量,然后开始逐步包含 WHERE 部分。如果某处性能下降,您应该调查它(可能是错误或丢失的索引、字段类型或 MySQL 本身的某些原因可能导致问题)。

关于mysql - 我怎样才能使这个 mysql 查询更有效并运行得更快?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28016268/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com