gpt4 book ai didi

sql - 查询需要很长时间

转载 作者:行者123 更新时间:2023-11-29 12:32:51 25 4
gpt4 key购买 nike

我有以下查询来返回不在 message_log 表中的用户标识

select * from likes where userid not in(select to_id from message_log)

我在 likes 表中的 userid 列上有一个索引,在 message_log 表中的 to_id 列上有一个索引,但根据 EXPLAIN,该索引未被使用。我的查询有问题吗?我的查询已经运行了 20 分钟,但仍然没有结果。

最佳答案

你可以试试这个

select * from likes lk where not exists (select 1 from message_log where to_id = lk.userid )

关于sql - 查询需要很长时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36256393/

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