gpt4 book ai didi

mysql - 优化 Mysql 查询(in 子句)

转载 作者:行者123 更新时间:2023-11-29 01:04:03 26 4
gpt4 key购买 nike

SELECT 
column1,
column2
FROM `table`
WHERE
column1 = '1 record'
AND column2 IN ([Array of lacks record])
AND column3 IN ([thousands of records]))

现在运行需要18秒,能不能低于5秒。请提出任何替代查询。

最佳答案

可能尝试将第 3 列的数千条记录放入临时表中,然后将现有表与临时表连接起来。使用大量 IN 子句保存。

如果第 3 列内容的来源是一个您可以对其进行连接的表,那就更好了。

关于mysql - 优化 Mysql 查询(in 子句),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13490166/

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