gpt4 book ai didi

mysql - 需要提高sql性能

转载 作者:行者123 更新时间:2023-11-30 23:19:32 27 4
gpt4 key购买 nike

Table temporary_search_table
post_id,property_status, property_address,....more 30 field

Table search_meta
meta_id,search_id,status,created_date

好的,我需要创建日期为昨天的总数据。对于每个 temporary_search_table 数据,在 search_meta 中可能有多个条目。所以我们需要从 search_meta 中选择最后一个字段并检查创建日期是昨天和 property_status 是待处理的。如果是,那么我们可以数一数。如果 search_meta 中没有数据可用于 temporary_search_table 中的条目,那么我们不需要在结果中计算该行。

这里我附上我的sql数据。它的工作,但对于 30000 行,它需要很多时间。

SELECT COUNT(id) FROM temporary_search_table 
WHERE property_status = 'pending' AND (1 = (SELECT DATEDIFF(NOW(), created_date)
FROM search_meta WHERE post_id = search_id ORDER BY created_date DESC LIMIT 0,1 ))

提前致谢。

最佳答案

除了检查表上的索引外,最好不要使用相关子查询并改用直接连接。

SELECT COUNT(id) 
FROM temporary_search_table
INNER JOIN search_meta ON post_id = search_id
WHERE property_status = 'pending' AND DATEDIFF(NOW(), created_date) = 1
ORDER BY created_date DESC
LIMIT 1

关于mysql - 需要提高sql性能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16144479/

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