gpt4 book ai didi

mysql - 如何在没有 IN 关键字的情况下重写此查询?

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

我写了这个查询:

SELECT * 
FROM etape_prospection INNER JOIN type_prospection
ON etape_prospection.type_prosp_id = type_prospection.type_prosp_id
WHERE etape_prospection.prosp_id IN (select transfert.prosp_id
from transfert
where transfert.user_code ='3'
AND transfert.date_transfert='2012-01-20');

我的老板不喜欢这个查询,因为 IN 关键字进行全表扫描,那么如何在没有 IN 关键字的情况下重写它?

最佳答案

您可以使用 EXISTS而不是 IN这通常比 IN 便宜有时也比 INNER JOIN 便宜在其他答案中建议:

SELECT * 
FROM etape_prospection INNER JOIN type_prospection
ON etape_prospection.type_prosp_id = type_prospection.type_prosp_id
WHERE EXISTS (select 1
FROM transfert
WHERE transfert.prosp_id = etape_prospection.prosp_id
AND transfert.user_code ='3'
AND transfert.date_transfert='2012-01-20');

另外(danihp 在 one of the other answers 上的评论提醒):使用 INNER JOIN如果 transfert 中有多行,可能会在结果集中产生重复行的不良/意外副作用满足这些条件。

关于mysql - 如何在没有 IN 关键字的情况下重写此查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8940692/

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