gpt4 book ai didi

MySQL UNION 与 JOIN with OR in 子句

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

我有一个表 TableA,其中包含列 [AccountID, Email]。我还有另一个表 TableB,其中包含 [AccountID_1、AccountID_2、电子邮件]。我需要将 TableA 中的 AccountIDTableB 中的任一 AccountID 进行匹配。这两种方法似乎都不起作用。第一个似乎停滞不前或永远持续(两个表都有数十万个条目)。第二个出现错误“无法重新打开表:TableB”。

尝试使用 OR 进行 JOIN

select count(distinct TableA.id) from TableA
JOIN TableB ON TableB.AccountID = TableA.AccountID_1
OR TableB.AccountID = TableA.AccountID_2
;

尝试 sql UNION

select count(distinct b.id) from (
select * from TableA
join TableB on TableB.AccountID = TableA.AccountID_1
union
select * from TableA
join TableB on TableB.AccountID = TableA.AccountID_2
) as b;

最佳答案

你可以试试

select count(*) from TableA where
exists ( select 1 from TableB where
AccountID in (AccountID_1,AccountID_2))

关于MySQL UNION 与 JOIN with OR in 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36759772/

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